Stuff
public text v1 · immutable<VirtualHost *:80>
ServerName example.com
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
<Location /a>
AuthUserFile /var/www/html/.htpasswd
AuthType Basic
AuthName "Password protected"
Require valid-user
ProxyPass http://localhost:8000/b
ProxyPassReverse http://localhost:8000/b
</Location>
</VirtualHost>