2021-07-12 22:38:46 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
2021-07-13 18:03:51 +00:00
|
|
|
|
2021-07-12 22:38:46 +00:00
|
|
|
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 18:03:51 +00:00
|
|
|
|
|
|
|
location /api {
|
2021-07-20 22:17:20 +00:00
|
|
|
proxy_pass http://backend-prod:5050;
|
2021-07-12 22:38:46 +00:00
|
|
|
}
|
2021-07-13 18:03:51 +00:00
|
|
|
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
2021-07-12 22:38:46 +00:00
|
|
|
}
|