Author: glen Date: Wed Dec 14 22:04:30 2005 GMT Module: SOURCES Tag: HEAD ---- Log message: - add settings from 2.2.0 sources: extra/httpd-info.conf
---- Files affected: SOURCES: apache-mod_status.conf (1.5 -> 1.6) ---- Diffs: ================================================================ Index: SOURCES/apache-mod_status.conf diff -u SOURCES/apache-mod_status.conf:1.5 SOURCES/apache-mod_status.conf:1.6 --- SOURCES/apache-mod_status.conf:1.5 Fri Oct 15 20:57:51 2004 +++ SOURCES/apache-mod_status.conf Wed Dec 14 23:04:24 2005 @@ -1,18 +1,31 @@ # $Id$ LoadModule status_module modules/mod_status.so -<IfModule mod_status.c> +# +# Get information about the requests being processed by the server +# and the configuration of the server. +# +# Required modules: mod_status (for the server-status handler), -# Allow server status reports, with the URL of http://servername/server-status -# Change the ".your_domain.com" to match your domain to enable. +<IfModule mod_status.c> +# +# Allow server status reports generated by mod_status, +# with the URL of http://servername/server-status +# Change the ".example.com" to match your domain to enable. <Location /server-status> - SetHandler server-status - - order deny,allow - deny from all - allow from 127.0.0.1 + SetHandler server-status + Order deny,allow + Deny from all + Allow from 127.0.0.1 </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. +# +#ExtendedStatus On </IfModule> # vim: filetype=apache ts=4 sw=4 et ================================================================ ---- CVS-web: http://cvs.pld-linux.org/SOURCES/apache-mod_status.conf?r1=1.5&r2=1.6&f=u _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
