mirror of
https://github.com/chatmail/relay.git
synced 2026-05-19 20:38:05 +00:00
fix #399
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## untagged
|
## untagged
|
||||||
|
|
||||||
|
- avoid nginx listening on ipv6 if v6 is dsiabled
|
||||||
|
([#402](https://github.com/deltachat/chatmail/pull/402))
|
||||||
|
|
||||||
- trigger "apt upgrade" during "cmdeploy run"
|
- trigger "apt upgrade" during "cmdeploy run"
|
||||||
([#398](https://github.com/deltachat/chatmail/pull/398))
|
([#398](https://github.com/deltachat/chatmail/pull/398))
|
||||||
|
|||||||
@@ -19,7 +19,9 @@ stream {
|
|||||||
|
|
||||||
server {
|
server {
|
||||||
listen 443;
|
listen 443;
|
||||||
|
{% if not disable_ipv6 %}
|
||||||
listen [::]:443;
|
listen [::]:443;
|
||||||
|
{% endif %}
|
||||||
proxy_pass $proxy;
|
proxy_pass $proxy;
|
||||||
ssl_preread on;
|
ssl_preread on;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user