mirror of
https://github.com/TeamPiped/Piped-Docker.git
synced 2024-08-14 23:56:53 +00:00
12 lines
234 B
Text
12 lines
234 B
Text
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";
|
|
}
|
|
}
|