Created
January 16, 2021 13:37
-
-
Save jonathanmeaney/ad756af6b5021d8d6250c54124813cd0 to your computer and use it in GitHub Desktop.
calc-mate Nginx server config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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