Simple Question on Apache Proxy Authentication

Hello everyone,

I'm trying to password protect my proxy. I get a prompt for a password, but it wont connect. Here's what I did: htpasswd -c password.file "username". Typed and confirmed password for user.

Code:
touch group.file 
nano group.file

usergroup: "username"

Saved the buffer. Then I added the following lines to my httpd.conf file:

Code:
ProxyRequests On
ProxyVia On

<Proxy *>
    Order deny,allow
    Allow from all
    AuthType Basic
    AuthName "Password Required"
    AuthUserFile password.file
    AuthGroupFile group.file
    Require group usergroup
</Proxy>


Any ideas?

Thank you!
 
Back
Top