Created
January 29, 2013 21:43
-
-
Save saml/4668190 to your computer and use it in GitHub Desktop.
enable ssi on proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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