Last active
August 29, 2015 14:27
-
-
Save nottrobin/2144ab9629bba76c29f2 to your computer and use it in GitHub Desktop.
Apache config to send proxy headers to a reverseproxy
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 *:443> | |
| ... | |
| RequestHeader set X-Forwarded-Proto 'https' env=HTTPS | |
| ProxyPass / http://10.0.0.3/ | |
| ProxyPassReverse / http://10.0.0.3/ | |
| ... | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment