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