Skip to content

Instantly share code, notes, and snippets.

@pdxjohnny
Created April 30, 2015 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pdxjohnny/01f6b05f63eb7dc5f09f to your computer and use it in GitHub Desktop.
Save pdxjohnny/01f6b05f63eb7dc5f09f to your computer and use it in GitHub Desktop.
Passes data from another port
<VirtualHost *:80>
ServerName something.example.com
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://server:port/
ProxyPassReverse / http://server:port/
<Location />
Order allow,deny
Allow from all
</Location>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment