Skip to content

Instantly share code, notes, and snippets.

@oguzzarci
Last active October 29, 2021 10:00
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 oguzzarci/6fdd971b1971deecb0cca792608b8c7f to your computer and use it in GitHub Desktop.
Save oguzzarci/6fdd971b1971deecb0cca792608b8c7f 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