nginx: new template

master
Philippe PITTOLI 2019-11-02 22:14:08 +01:00
parent 7fdccfa1b2
commit f6f4d542ae
1 changed files with 7 additions and 7 deletions

View File

@ -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 %}