Bachelorthesis_Code/frontend/nginx/nginx.conf

16 lines
422 B
Nginx Configuration File
Raw Normal View History

2021-07-12 22:38:46 +00:00
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# to redirect all the requests to index.html,
# useful when you are using react-router
try_files $uri /index.html;
2021-07-13 16:13:46 +00:00
proxy_pass http://localhost:5000
2021-07-12 22:38:46 +00:00
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}