diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2012-04-09 06:22:06 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2012-04-09 06:22:06 +0000 |
commit | 5cc3ef4b5260a20ce28c3ada0d7edb364ca1688b (patch) | |
tree | 575e505e264ae5dea3b1920a53a436129437d2b2 /sca-cpp/trunk/modules/http/httpd-conf | |
parent | 7438c0ac7dc2ae6f03a0329444a6e3eabfbac048 (diff) |
Enable administrative access using basic auth.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1311136 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/http/httpd-conf')
-rwxr-xr-x | sca-cpp/trunk/modules/http/httpd-conf | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/sca-cpp/trunk/modules/http/httpd-conf b/sca-cpp/trunk/modules/http/httpd-conf index f940073a91..74b3944cc1 100755 --- a/sca-cpp/trunk/modules/http/httpd-conf +++ b/sca-cpp/trunk/modules/http/httpd-conf @@ -121,6 +121,7 @@ SetOutputFilter RATE_LIMIT;DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html +BrowserMatch ^check_http/ check_http SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary Header append Vary User-Agent env=!dont-vary @@ -141,12 +142,24 @@ RewriteCond %{HTTP:X-Forwarded-Server} ^$ [NC] RewriteRule .* http://$host$pportsuffix%{REQUEST_URI} [R] </Location> +# Enable server status +<Location /server-status> +SetHandler server-status +HostnameLookups on +</Location> + +<Location /server-info> +SetHandler server-info +HostnameLookups on +</Location> + Include conf/svhost.conf # Configure authentication Include conf/noauth.conf Include conf/locauth.conf Include conf/pubauth.conf +Include conf/adminauth.conf </VirtualHost> @@ -299,16 +312,16 @@ AuthType None Require all granted </Location> +EOF + +cat >$root/conf/adminauth.conf <<EOF + # Allow the server admin to view the server status and info <Location /server-status> -SetHandler server-status -HostnameLookups on Require user admin </Location> <Location /server-info> -SetHandler server-info -HostnameLookups on Require user admin </Location> |