mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-12-12 21:30:41 +05:30
14 lines
255 B
Plaintext
14 lines
255 B
Plaintext
upstream frontend {
|
|
server piped-frontend:80;
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name FRONTEND_HOSTNAME;
|
|
|
|
location / {
|
|
proxy_pass http://frontend;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "keep-alive";
|
|
}
|
|
}
|