8 lines
143 B
Plaintext
8 lines
143 B
Plaintext
server {
|
|
listen 8080;
|
|
|
|
location / {
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_pass http://localhost:13200;
|
|
}
|
|
} |