Skip to content

Instantly share code, notes, and snippets.

@qweliant
Created January 21, 2021 19:24
Show Gist options
  • Save qweliant/67dde0a56f23a8064d339220be95c40d to your computer and use it in GitHub Desktop.
Save qweliant/67dde0a56f23a8064d339220be95c40d to your computer and use it in GitHub Desktop.
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment