Skip to content

Instantly share code, notes, and snippets.

@mmarcon
Created September 4, 2015 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmarcon/8b75ff238f054963fc4e to your computer and use it in GitHub Desktop.
Save mmarcon/8b75ff238f054963fc4e to your computer and use it in GitHub Desktop.
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
# Make site accessible from http://localhost/
server_name localhost;
# server_name example.com;
location / {
#First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
include /etc/nginx/sites-available/*.conf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment