Skip to content

Instantly share code, notes, and snippets.

@cupnoodle
Created March 7, 2016 09:58
Show Gist options
  • Save cupnoodle/2e4737cff62778b5d68f to your computer and use it in GitHub Desktop.
Save cupnoodle/2e4737cff62778b5d68f to your computer and use it in GitHub Desktop.
Nginx config 1
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment