cfone/nginx/appseed-app.conf
2021-09-22 23:46:35 -04: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;
}
}