Skip to content

Instantly share code, notes, and snippets.

@jpluscplusm
Created December 11, 2014 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpluscplusm/9709dac3058e11a5ff33 to your computer and use it in GitHub Desktop.
Save jpluscplusm/9709dac3058e11a5ff33 to your computer and use it in GitHub Desktop.
*untested* reverse proxy to get around SSLv3 EOL
server {
listen 80;
resolver 8.8.8.8; # or your internal DNS server
location / {
proxy_set_header Host $http_host;
proxy_http_version 1.1;
proxy_pass https://$http_host;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment