Autoconfigure IPv6 on each server

pull/35/head
Emilien Mantel 2018-03-22 19:47:30 +01:00
parent 6e877c070e
commit 2bab49221a
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{% set __proto = item.proto | default(['http']) %}
{% set __main_name = item | nginx_site_filename %}
{% set __listen = item.listen | default([80]) %}
{% set __listen_ssl = item.listen_ssl | default([443]) %}
{% set __listen = item.listen | default(['80', '[::]:80']) %}
{% set __listen_ssl = item.listen_ssl | default(['443', '[::]:443']) %}
{% set __http_proxy_protocol_port = item.http_proxy_protocol_port | default([]) %}
{% set __https_proxy_protocol_port = item.https_proxy_protocol_port | default([]) %}
{% set __location = item.location | default({}) %}