Piped-Docker/template/pipedfrontend.conf
2024-05-27 18:51:49 +02:00

13 lines
254 B
Text

upstream frontend {
server pipedfrontend:80;
}
server {
listen 80;
server_name FRONTEND_HOSTNAME;
location / {
proxy_pass http://frontend;
proxy_http_version 1.1;
proxy_set_header Connection "keep-alive";
}
}