mirror of
https://github.com/frappe/bench.git
synced 2025-02-04 03:48:24 +00:00
feat(config): Add IPv6 listener to nginx site configuration (#1312)
This commit is contained in:
parent
d194dc8bb1
commit
593c7b737f
@ -14,8 +14,10 @@ map {{ from_variable }} {{ to_variable }} {
|
|||||||
server {
|
server {
|
||||||
{% if ssl_certificate and ssl_certificate_key %}
|
{% if ssl_certificate and ssl_certificate_key %}
|
||||||
listen {{ port }} ssl;
|
listen {{ port }} ssl;
|
||||||
|
listen [::]:{{ port }} ssl;
|
||||||
{% else %}
|
{% else %}
|
||||||
listen {{ port }};
|
listen {{ port }};
|
||||||
|
listen [::]:{{ port }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
server_name
|
server_name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user