Skip to content

Instantly share code, notes, and snippets.

@chrismeller
Created April 16, 2014 17:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismeller/10912818 to your computer and use it in GitHub Desktop.
Save chrismeller/10912818 to your computer and use it in GitHub Desktop.
Nginx vhost redirect to ssl
server {
include listen_80;
server_name www.example.com;
rewrite ^ https://www.example.com$request_uri$is_args$args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment