mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-12-13 22:00:40 +05:30
13 lines
241 B
Plaintext
13 lines
241 B
Plaintext
server {
|
|
listen 80;
|
|
server_name FRONTEND_HOSTNAME;
|
|
|
|
set $backend "http://pipedfrontend:80";
|
|
|
|
location / {
|
|
proxy_pass $backend;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "keep-alive";
|
|
}
|
|
}
|