mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2025-01-06 01:20:38 +05:30
14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
upstream frontend {
|
|
server pipedfrontend:80;
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name FRONTEND_HOSTNAME;
|
|
|
|
location / {
|
|
proxy_pass http://frontend;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "keep-alive";
|
|
}
|
|
}
|