This commit is contained in:
holger krekel
2024-08-06 10:24:28 +02:00
parent effd5bc6e9
commit dee36638cf
2 changed files with 4 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
## untagged
- avoid nginx listening on ipv6 if v6 is dsiabled
([#402](https://github.com/deltachat/chatmail/pull/402))
- trigger "apt upgrade" during "cmdeploy run"
([#398](https://github.com/deltachat/chatmail/pull/398))

View File

@@ -19,7 +19,9 @@ stream {
server {
listen 443;
{% if not disable_ipv6 %}
listen [::]:443;
{% endif %}
proxy_pass $proxy;
ssl_preread on;
}