mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-26 11:12:48 +02:00
11 lines
290 B
Django/Jinja
11 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>
|