0

In my secure apache2 site file, I have

<IfModule mod_ssl.c>    
NameVirtualHost 192.168.1.1:443
SSLStrictSNIVHostCheck off
<VirtualHost 192.168.1.1:443>

...

ProxyPass /subdirectory http://another.site/anotherdir/
ProxyPass /subdirectory/ http://another.site/anotherdir/

<Location /anotherdir/>
Order allow,deny
Allow from all
</Location>

</VirtualHost>
</IfModule>

When my users hit the proxypass, they are prompted for an apache username and password. How can I bypass the apache username and password? What am I doing wrong?

divided
  • 367
  • 1
  • 4
  • 11

1 Answers1

1

Try adding RequestHeader unset Authorization to your config before the ProxyPass lines.

bentek
  • 2,235
  • 1
  • 15
  • 23