Files
SkydiveLogs/nginx.conf
Sébastien André 9a9dc3fbea Update for Docker
2021-01-21 16:48:43 +01:00

15 lines
176 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name _;
root /app/Front;
index index.html;
location /api {
include proxy_params;
proxy_pass http://localhost:5001;
}
}