Files
black-dashboard-flask/nginx/appseed-app.conf
2020-08-21 11:54:03 +03:00

10 lines
204 B
Plaintext

server {
listen 85;
location / {
proxy_pass http://localhost:5005/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}