You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by le...@reuel.net on 2006/01/05 23:54:35 UTC

[users@httpd] How to require authentication for a proxy?

Pointers to documentation would be appreciated. I can do the proxy and the authentication but am not sure how to authenticate anyone going through the proxy. I need a limited user set to be able to pass through, apache 2.0.x.

Thanks!

leam


---------------------------------------------------------------------
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] How to require authentication for a proxy?

Posted by Joshua Slive <jo...@slive.ca>.
On 1/5/06, leam@reuel.net <le...@reuel.net> wrote:
> Pointers to documentation would be appreciated. I can do the proxy and the authentication but am not sure how to authenticate anyone going through the proxy. I need a limited user set to be able to pass through, apache 2.0.x.

<Proxy: *>
Require valid-user
other auth directives as described in docs...
</Proxy>

Joshua.