cfone/nginx/appseed-app.conf

10 lines
204 B
Plaintext
Raw Normal View History

2021-09-23 03:46:35 +00:00
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;
}
}