The proxy server also needs to forward some requests (/nagios) to another internal apache server. Any suggestions in this case?
-----Original Message----- From: Peter Schober [mailto:[email protected]] Sent: Friday, November 13, 2009 10:18 AM To: [email protected] Subject: Re: [us...@httpd] Authenticate each user once for multiple applications * Yungwei Chen <[email protected]> [2009-11-13 17:00]: > <Location /rpt > > Order Deny,Allow > Deny from all > Allow from ... > ProxyPass https://111.111.111.111/rpt > ProxyPassReverse https://111.111.111.111/rpt > ProxyPassReverseCookieDomain 111.111.111.111 100.100.100.100 > AuthName "Restricted Access" > AuthType Basic > AuthUserFile /etc/httpd/passwd/htpasswd.users > Require valid-user > </Location> [...] > <Location /rpt2 > > Order Deny,Allow > Deny from all > Allow from ... > ProxyPass https://111.111.111.111/rpt2 > ProxyPassReverse https://111.111.111.111/rpt2 > ProxyPassReverseCookieDomain 111.111.111.111 100.100.100.100 > AuthName "Restricted Access" > AuthType Basic > AuthUserFile /etc/httpd/passwd/htpasswd.users > Require valid-user > </Location> If this indeed is representative of your site's structure you could simply have one <Location /foo> (or just '/') proxying to https://111.111.111.111/ and you should be able to access /foo/rpt, /foo/rpt2. etc. -peter --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [email protected] " from the digest: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [email protected] " from the digest: [email protected] For additional commands, e-mail: [email protected]
