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?