On 11/7/05, CSN <[EMAIL PROTECTED]> wrote:
> I have ProxyRequests turned on and secured it with a
> block like so:
>
> <Proxy *>
>   AuthType Basic
>   AuthUserFile /etc/httpd/...
>   Require valid-user
> </Proxy>
>
> But I also have a site that needs to use ProxyPass:
>
> <VirtualHost *:80>
>   ...
>   ProxyPass / http://mydomain.com:3000
>   ProxyPassReverse / http://mydomain.com:3000
> </VirtualHost>
>
> As configured above, my browser prompts me for a login
> to access the site.

Just a guess, but try:
<Proxy http://mydomain.com:3000/*>
Satisfy Any
Allow from all
</Proxy>

Joshua.

---------------------------------------------------------------------
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]

Reply via email to