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

13 lines
249 B
Text
Raw Normal View History

2025-02-15 00:56:26 +09:00
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";
}
}