On 6/18/05, K Anand <[EMAIL PROTECTED]> wrote:
> Josh,
> here is what the apache 1.3 manual says about Directory and
> Location directives :
>
> Location Directive :
> " For all origin (non-proxy) requests, the URL to be matched is of the form
> /path/, and you should not include any http:
Josh,
here is what the apache 1.3 manual says about Directory and
Location directives :
Location Directive :
" For all origin (non-proxy) requests, the URL to be matched is of the form
/path/, and you should not include any http://servername prefix. For proxy
requests, the URL to be match
Hi Josh,
Think you missed one of my messages...I had managed to get
it working..yes, you have to give the proxied hostname ie instead of giving
, it should have been http://a.b.c.d/xxx/>...I also tried it with Location directive..that
was also working...
Thanx
Anand
- Origina
On 6/17/05, K Anand <[EMAIL PROTECTED]> wrote:
>
> ProxyPass /xxx/ http://a.b.c.d/xxx
> ProxyPassReverse /xxx/ http://a.b.c.d/xxx
I believe (though I can't remember testing this much myself) that
requires a full url including http://hostname/. An
easier
I managed to get it working...What I had to put in was not but
http://a.b.c.d/>
Anand
- Original Message -
From: "K Anand" <[EMAIL PROTECTED]>
To:
Sent: Friday, June 17, 2005 11:21 AM
Subject: [EMAIL PROTECTED] Basic Authentication over reverse proxy
> I want to do basic authenticati
I want to do basic authentication with reverse proxy...My relevant config is
as follows :
ProxyRequests Off
Order deny,allow
Deny from all
Allow from all
AuthType Basic
AuthName "By Invitaion Only"
AuthUserFile /etc/httpd/conf/passwd/passwords
Require valid-user
P