mirror of
https://github.com/trailofbits/algo
synced 2024-11-04 06:00:21 +00:00
12 lines
290 B
Django/Jinja
12 lines
290 B
Django/Jinja
<VirtualHost *:*>
|
|
<Proxy *>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Proxy>
|
|
RewriteEngine On
|
|
RewriteRule ^(.*)$ http://%{HTTP_HOST}$1 [NC,P]
|
|
ProxyPass / http://$1
|
|
ProxyPassReverse / http://$1
|
|
ProxyPreserveHost On
|
|
</VirtualHost>
|