This repository has been archived on 2025-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
esh/esh_piped/templates/default/pipedfrontend.conf.erb
2025-02-15 01:05:58 +09:00

12 lines
249 B
Text

server {
listen 80;
server_name <%= @frontend_hostname %>;
set $backend "http://pipedfrontend:80";
location / {
proxy_pass $backend;
proxy_http_version 1.1;
proxy_set_header Connection "keep-alive";
}
}