All pastes #2062718 Raw Edit

Stuff

public text v1 · immutable
#2062718 ·published 2011-05-17 17:07 UTC
rendered paste body
<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>