diff --git a/frontend/conf/nginx.conf b/frontend/conf/nginx.conf index 4659260..a022b5c 100644 --- a/frontend/conf/nginx.conf +++ b/frontend/conf/nginx.conf @@ -33,11 +33,15 @@ http { location / { proxy_pass http://frontend; } + } + + server { + listen 80; + access_log logs/access.log; location /api { proxy_pass http://flask-frontend; } - } }