Skip to content

Instantly share code, notes, and snippets.

@omerh
Created November 27, 2017 15:35
Show Gist options
  • Save omerh/3bdfec7cb045b1a2e323344845df8014 to your computer and use it in GitHub Desktop.
Save omerh/3bdfec7cb045b1a2e323344845df8014 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name domain.com;
return 301 http://www.domain.com$request_uri;
}
server {
listen 80;
server_name *.domain.com;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
server {
listen 80 default_server;
location / {
return 403;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment