Skip to content

Commit

Permalink
feat(config): Add IPv6 listener to nginx site configuration (frappe#1312
Browse files Browse the repository at this point in the history
)
  • Loading branch information
deajan committed May 30, 2022
1 parent d194dc8 commit 593c7b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bench/config/templates/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 593c7b7

Please sign in to comment.