diff options
author | Matthew Fennell <matthew@fennell.dev> | 2025-07-05 17:03:08 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2025-07-05 17:03:08 +0100 |
commit | a8c78551e8a04415179b8c4383f5b31d3b7579e9 (patch) | |
tree | 77c9b49a35c618d6f12ac425f54f5b61616a2f69 | |
parent | 3cd6aa722e093a464a407f5ac914a6f3616b2cb9 (diff) |
Accept SSL connections on IPv6
-rw-r--r-- | files/nginx_conf.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/nginx_conf.j2 b/files/nginx_conf.j2 index da4222d..3c38ced 100644 --- a/files/nginx_conf.j2 +++ b/files/nginx_conf.j2 @@ -4,7 +4,7 @@ server { listen 443 ssl; - listen [::]:443; + listen [::]:443 ssl; ssl_certificate /etc/prosody/certs/{{ virtual_host }}.crt; ssl_certificate_key /etc/prosody/certs/{{ virtual_host }}.key; |