mirror of
https://github.com/trailofbits/algo
synced 2024-11-13 19:12:06 +00:00
12 lines
290 B
Plaintext
12 lines
290 B
Plaintext
|
<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>
|