From 856cc74d90ce2fbb9aea1b4f0b2eee7e8901f890 Mon Sep 17 00:00:00 2001 From: julian Date: Fri, 6 Oct 2023 05:06:15 +0200 Subject: [PATCH] Make Public-Reverse-Proxy handle IPv6 --- .../chaosknoten/configs/public-reverse-proxy/nginx/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/files/chaosknoten/configs/public-reverse-proxy/nginx/nginx.conf b/playbooks/files/chaosknoten/configs/public-reverse-proxy/nginx/nginx.conf index a6794f6..8468553 100644 --- a/playbooks/files/chaosknoten/configs/public-reverse-proxy/nginx/nginx.conf +++ b/playbooks/files/chaosknoten/configs/public-reverse-proxy/nginx/nginx.conf @@ -30,6 +30,7 @@ stream { server { listen 0.0.0.0:443; + listen [::]:443; proxy_pass $address; ssl_preread on; proxy_protocol on;