Changes of Revision 16
[-] [+] | Added | apache2-mod_info.conf |
@@ -0,0 +1,15 @@ +# +# Allow remote server configuration reports, with the URL of +# http://servername/server-info (requires that mod_info.c be loaded). +# +# see http://httpd.apache.org/docs-2.2/mod/mod_info.html +# +<IfModule mod_info.c> + <Location /server-info> + SetHandler server-info + Order deny,allow + Deny from all + Allow from localhost + </Location> +</IfModule> + |