mirror of
https://github.com/frappe/bench.git
synced 2024-11-16 01:57:08 +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 {
|
||||
{% if ssl_certificate and ssl_certificate_key %}
|
||||
listen {{ port }} ssl;
|
||||
listen [::]:{{ port }} ssl;
|
||||
{% else %}
|
||||
listen {{ port }};
|
||||
listen [::]:{{ port }};
|
||||
{% endif %}
|
||||
|
||||
server_name
|
||||
|
Loading…
Reference in New Issue
Block a user