15 lines
389 B
Plaintext
15 lines
389 B
Plaintext
<IfModule mod_info.c>
|
|
#
|
|
# Allow server info reports generated by mod_info,
|
|
# with the URL of http://servername/server-info
|
|
# Uncomment and change the ".example.com" to allow
|
|
# access from other hosts.
|
|
#
|
|
<Location /server-info>
|
|
SetHandler server-info
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from <%= node['apache']['info_allow_list'] %>
|
|
</Location>
|
|
</IfModule>
|