Sha256: 0cd5feae1b6a4772145391d2b1b345c80dd13572ce40d25a26ed0b9754bb8b4b

Contents?: true

Size: 717 Bytes

Versions: 4

Compression:

Stored size: 717 Bytes

Contents

<IfModule mod_status.c>
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Uncomment and change the ".example.com" to allow
# access from other hosts.
#
<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost ip6-localhost
#    Allow from .example.com
</Location>
#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
<% if node['apache']['ext_status'] %>
ExtendedStatus On
<% else -%>
ExtendedStatus Off
<% end -%>
#
</IfModule>

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
fast_food-0.1.2 chef/cookbooks/apache2/templates/default/mods/status.conf.erb
fast_food-0.1.1 chef/cookbooks/apache2/templates/default/mods/status.conf.erb
fast_food-0.1.0 chef/cookbooks/apache2/templates/default/mods/status.conf.erb
vagrant-managed-servers-0.1.0 cookbooks/apache2/templates/default/mods/status.conf.erb