Skip to content

Instantly share code, notes, and snippets.

@askaidau
Created January 30, 2016 05:22
Show Gist options
  • Save askaidau/d5c81ad18b755904f960 to your computer and use it in GitHub Desktop.
Save askaidau/d5c81ad18b755904f960 to your computer and use it in GitHub Desktop.
NGINX Sample Site Configs
server {
listen 80;
server_name some-example-domain.com;
return 301 https://some-example-domain.com$request_uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment