/apache2/mods-available/info.conf

http://github.com/brinkman83/bashrc · Config · 17 lines · 15 code · 2 blank · 0 comment · 0 complexity · 8a36e9a5542c8e24df6170052a31b62b MD5 · raw file

  1. <IfModule mod_info.c>
  2. #
  3. # Allow remote server configuration reports, with the URL of
  4. # http://servername/server-info (requires that mod_info.c be loaded).
  5. # Uncomment and change the ".example.com" to allow
  6. # access from other hosts.
  7. #
  8. <Location /server-info>
  9. SetHandler server-info
  10. Order deny,allow
  11. Deny from all
  12. Allow from localhost ip6-localhost
  13. # Allow from .example.com
  14. </Location>
  15. </IfModule>