mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-20 14:13:24 +00:00
12 lines
266 B
Plaintext
12 lines
266 B
Plaintext
# <%- incoming_port %> - <%- protocols.join(',').toUpperCase() %>
|
|
<%
|
|
protocols.forEach(function (protocol) {
|
|
%>
|
|
server {
|
|
listen <%- incoming_port %> <%- protocol === 'tcp' ? '' : protocol %>;
|
|
proxy_pass <%- forward_server %>:<%- forward_port %>;
|
|
}
|
|
<%
|
|
});
|
|
%>
|