Created
December 24, 2015 11:06
-
-
Save cyrilpic/eea4c66246f1829c804f to your computer and use it in GitHub Desktop.
Disable OS X Server proxied services
This file contains hidden or 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
<VirtualHost *:80> | |
ServerName www.example.com | |
ProxyPreserveHost On | |
SetEnv proxy-chain-auth on | |
RequestHeader set X-Forwarded-Proto "http" | |
RequestHeader set X-Forwarded-Port "80" | |
ProxyPass / http://127.0.0.1:34580/ | |
ProxyPassReverse / http://127.0.0.1:34580/ | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment