Skip to content

Instantly share code, notes, and snippets.

@touv
Created June 8, 2018 12:07
Show Gist options
  • Save touv/9e858658b80eb343eb0042dec0f3ac59 to your computer and use it in GitHub Desktop.
Save touv/9e858658b80eb343eb0042dec0f3ac59 to your computer and use it in GitHub Desktop.
Apache reverse proxy conf for ezmaster
<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