Skip to content

Instantly share code, notes, and snippets.

@ggagosh
Created March 3, 2022 07:46
Show Gist options
  • Save ggagosh/a03032da59b8c1d8b50540d4a876a1ca to your computer and use it in GitHub Desktop.
Save ggagosh/a03032da59b8c1d8b50540d4a876a1ca to your computer and use it in GitHub Desktop.
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
error_page 404 /index.html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment