Update for Docker

This commit is contained in:
Sébastien André
2021-01-21 16:48:43 +01:00
parent a2732f42c7
commit 9a9dc3fbea
10 changed files with 60 additions and 11 deletions

14
nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
listen [::]:80;
server_name _;
root /app/Front;
index index.html;
location /api {
include proxy_params;
proxy_pass http://localhost:5001;
}
}