Skip to content

Instantly share code, notes, and snippets.

@jonathanmeaney
Created January 16, 2021 13:37
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 jonathanmeaney/ad756af6b5021d8d6250c54124813cd0 to your computer and use it in GitHub Desktop.
Save jonathanmeaney/ad756af6b5021d8d6250c54124813cd0 to your computer and use it in GitHub Desktop.
calc-mate Nginx server config
server {
server_name calc-mate.com www.calc-mate.com;
root /path/to/calc-mate/build;
index index.html;
location / {
try_files $uri /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment