nginx: new template
parent
7fdccfa1b2
commit
f6f4d542ae
|
@ -21,10 +21,10 @@ http {
|
|||
|
||||
server_tokens off;
|
||||
|
||||
{% for user in consumers["www"] %}
|
||||
{% for user in consumers.www %}
|
||||
server {
|
||||
listen {{ port(service.id) }} ;
|
||||
listen [::]:{{ port(service.id) }} ;
|
||||
listen {{ service.ports.http }} ;
|
||||
listen [::]:{{ service.ports.http }} ;
|
||||
server_name {{ user.domain }} ;
|
||||
|
||||
location / {
|
||||
|
@ -33,16 +33,16 @@ http {
|
|||
}
|
||||
{% endfor %}
|
||||
|
||||
{% for user in consumers["http"] %}
|
||||
{% for user in consumers.http %}
|
||||
server {
|
||||
listen {{ port(service.id) }};
|
||||
listen [::]:{{ port(service.id) }};
|
||||
listen {{ service.ports.http }};
|
||||
listen [::]:{{ service.ports.http }};
|
||||
server_name {{ user.domain }} *.{{ user.domain }};
|
||||
|
||||
location / {
|
||||
proxy_set_header Host $host;
|
||||
proxy_next_upstream_timeout 2s;
|
||||
proxy_pass http://127.0.0.1:{{ port(user.id) }}/;
|
||||
proxy_pass http://127.0.0.1:{{ user.ports.http }}/;
|
||||
}
|
||||
}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in New Issue