Skip to content

Instantly share code, notes, and snippets.

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 cyrilpic/eea4c66246f1829c804f to your computer and use it in GitHub Desktop.
Save cyrilpic/eea4c66246f1829c804f to your computer and use it in GitHub Desktop.
Disable OS X Server proxied services
<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