12 lines
249 B
Text
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";
|
|
}
|
|
}
|