13 lines
243 B
Plaintext
Executable File
13 lines
243 B
Plaintext
Executable File
server {
|
|
listen 80;
|
|
server_name piped.akanealw.com;
|
|
|
|
set $backend "http://piped-frontend:80";
|
|
|
|
location / {
|
|
proxy_pass $backend;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "keep-alive";
|
|
}
|
|
}
|