Files
black-dashboard-flask/nginx/appseed-app.conf
2021-02-10 11:48:50 +02: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;
}
}