Created
June 8, 2018 12:07
-
-
Save touv/9e858658b80eb343eb0042dec0f3ac59 to your computer and use it in GitHub Desktop.
Apache reverse proxy conf for ezmaster
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> | |
ServerName exemple.fr | |
ServerAlias *.exemple.fr | |
SSLEngine on | |
SSLProxyEngine on | |
SSLCACertificateFile /applis/accel-s/certif/digicert/star_delivery_istex_fr/DigiCertCA.crt | |
SSLCertificateFile /applis/accel-s/certif/digicert/star_delivery_istex_fr/star_delivery_istex_fr.crt | |
SSLCertificateKeyFile /applis/accel-s/certif/digicert/star_delivery_istex_fr/star_delivery_istex_fr.key | |
ProxyPreserveHost On | |
ProxyPass / http://192.168.127.37:35267/ | |
ProxyPassReverse / http://192.168.127.37:35267/ | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerName exemple.fr | |
ServerAlias *.exemple.fr | |
ProxyPreserveHost On | |
ProxyPass / http://192.168.127.37:35267/ | |
ProxyPassReverse / http://192.168.127.37:35267/ | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment