Skip to content

Instantly share code, notes, and snippets.

@lomocc
Created June 14, 2018 09:48
Show Gist options
  • Save lomocc/76986ea04ca30db9fd244f3ac19db892 to your computer and use it in GitHub Desktop.
Save lomocc/76986ea04ca30db9fd244f3ac19db892 to your computer and use it in GitHub Desktop.
nginx html5Mode
server {
listen 80;
server_name localhost;
location / {
autoindex on;
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment