18 lines
461 B
Plaintext
18 lines
461 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location /h/ {
|
|
proxy_http_version 1.1;
|
|
proxy_buffering off;
|
|
proxy_request_buffering off;
|
|
proxy_read_timeout 1h;
|
|
proxy_send_timeout 1h;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_pass http://streamhall:8080;
|
|
}
|
|
}
|