18 lines
411 B
Plaintext
18 lines
411 B
Plaintext
# 2023-10-13
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
server_name piped.domain.com;
|
|
set $backend "http://xxx.xxx.xxx.xxx:8302";
|
|
|
|
aio threads=default;
|
|
|
|
location / {
|
|
aio threads=default;
|
|
proxy_pass $backend;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "keep-alive";
|
|
}
|
|
}
|