Skip to content

Instantly share code, notes, and snippets.

@neg3ntropy
Created February 2, 2017 09:01
Show Gist options
  • Save neg3ntropy/3c1f5ea0aa2d7a322f1923a084c50351 to your computer and use it in GitHub Desktop.
Save neg3ntropy/3c1f5ea0aa2d7a322f1923a084c50351 to your computer and use it in GitHub Desktop.
http2https with apache
<VirtualHost *:80>
SSLProxyEngine on
ErrorLog /dev/stderr
CustomLog /dev/stdout combined
ServerName www.google.it
ProxyPass / https://www.google.it/
ProxyPassReverse / https://www.google.it/
ProxyPreserveHost Off
#SSLProxyVerify none
#SSLProxyCheckPeerCN off
#SSLProxyCheckPeerName off
#ProxyRequests Off
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment