Skip to content

Instantly share code, notes, and snippets.

@Ahmadre
Created February 7, 2021 00:37
Show Gist options
  • Save Ahmadre/7a0a4fb4b0e0ec68f3d7c62cff3bd558 to your computer and use it in GitHub Desktop.
Save Ahmadre/7a0a4fb4b0e0ec68f3d7c62cff3bd558 to your computer and use it in GitHub Desktop.
Nginx default webserver config
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