From 06962388a53a9a2ef19a058822f63806d822d4eb Mon Sep 17 00:00:00 2001 From: Baptiste Peupier <60870677+BaptistePeupier@users.noreply.github.com> Date: Wed, 2 Feb 2022 09:36:29 +0100 Subject: [PATCH] Update nginx.conf --- frontend/conf/nginx.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; } - } }