Skip to content

Instantly share code, notes, and snippets.

@paulonteri
Created June 15, 2020 20:27
Show Gist options
  • Save paulonteri/ac9a24c616d57c25f800600ffc318d40 to your computer and use it in GitHub Desktop.
Save paulonteri/ac9a24c616d57c25f800600ffc318d40 to your computer and use it in GitHub Desktop.
React Nginx 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