Skip to content

Instantly share code, notes, and snippets.

@adnanfajr
Last active April 17, 2016 11:22
Show Gist options
  • Save adnanfajr/071a5fcdcf06d2348f89cb16798d5eab to your computer and use it in GitHub Desktop.
Save adnanfajr/071a5fcdcf06d2348f89cb16798d5eab to your computer and use it in GitHub Desktop.
Nginx conf to enable https
...
if ($http_x_forwarded_proto = "http") {
return 301 https://$server_name$request_uri;
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment