From 07e83e2f0016ff0b5d7ea8262b782a0e6043b390 Mon Sep 17 00:00:00 2001 From: cami Date: Tue, 13 Jul 2021 20:03:51 +0200 Subject: [PATCH] added working nginx configuration --- frontend/nginx/nginx.conf | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/nginx/nginx.conf b/frontend/nginx/nginx.conf index 615920f..2c1c60e 100644 --- a/frontend/nginx/nginx.conf +++ b/frontend/nginx/nginx.conf @@ -1,15 +1,19 @@ 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; - proxy_pass http://localhost:5000 } + + location /api { + # include uwsgi_params; + # uwsgi_pass http://backend-prod:5000; + proxy_pass http://backend-prod:5000; + } + error_page 500 502 503 504 /50x.html; - location = /50x.html { - root /usr/share/nginx/html; - } }