Files
Piped-Docker/template/pipedapi.conf
T
2021-09-25 14:44:58 +01:00

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";
}
}