mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-12-13 05:40:40 +05:30
11 lines
204 B
Plaintext
11 lines
204 B
Plaintext
server {
|
|
listen 80;
|
|
server_name BACKEND_HOSTNAME;
|
|
|
|
location / {
|
|
proxy_pass http://varnish:80;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "keep-alive";
|
|
}
|
|
}
|