Update nginx.conf

This commit is contained in:
Baptiste Peupier 2022-02-02 09:36:29 +01:00
parent 14e0775213
commit 06962388a5

View file

@ -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;
}
}
}