-
-
Save Guitsou/6211934 to your computer and use it in GitHub Desktop.
Conf de reverse proxy apache
From http://blog.xn--hry-bma.com/article9/configurer-un-reverse-proxy-apache-http-https
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
http://blog.xn--hry-bma.com/article9/configurer-un-reverse-proxy-apache-http-https |
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 nomdedomaine.tld # | |
ProxyPreserveHost On | |
ProxyRequests off | |
ProxyPass / http://IPSERVEURWEBINTERNE/ | |
ProxyPassReverse / http://IPSERVEURWEBINTERNE/ | |
# | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment