Skip to content

Instantly share code, notes, and snippets.

@saml
Created January 29, 2013 21:43
Show Gist options
  • Save saml/4668190 to your computer and use it in GitHub Desktop.
Save saml/4668190 to your computer and use it in GitHub Desktop.
enable ssi on proxy
NameVirtualHost *:8383
<VirtualHost *:8383>
ProxyPass / http://localhost:5000/
ProxyPassReverse / http://localhost:5000/
<Proxy http://localhost:5000/*>
Order deny,allow
Allow from all
SetOutputFilter INCLUDES
</Proxy>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment