Skip to content

Instantly share code, notes, and snippets.

# These commands will proxy /xyz to port 9094
ProxyPreserveHost On
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
RewriteRule ^/xyz(.*)$ http://127.0.0.1:9094$1 [P,L]
ProxyPassReverse /xyz http://127.0.0.1:9094