10 lines
204 B
Plaintext
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;
|
||
|
}
|
||
|
}
|