Skip to content

Instantly share code, notes, and snippets.

@hatamiarash7
Created February 13, 2018 18:59
Show Gist options
  • Save hatamiarash7/28b90bf8e61a4269b785898c3489a23d to your computer and use it in GitHub Desktop.
Save hatamiarash7/28b90bf8e61a4269b785898c3489a23d to your computer and use it in GitHub Desktop.
Force Nginx to use HTTPS
server {
listen 80;
server_name mysite.com;
rewrite ^ https://$server_name$request_uri? permanent;
}
server {
listen 443;
...
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment