From 51d9804e148c430d463d843336b36bec420af310 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Tue, 13 Feb 2024 08:53:55 -0800 Subject: [PATCH] Oops, apparently this invocation wasn't good enough for IPv4? I tried to copy this change to the main Dress to Impress apps, and it like SUPER broke them, even though I've seen sources say this should work for both IPv4 and IPv6? Clearly I'm missing something, but this was the change to get things working again over there, so I'm gonna copy them over here too for good measure. --- setup-nginx.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup-nginx.yml b/setup-nginx.yml index b585cef..9d25969 100755 --- a/setup-nginx.yml +++ b/setup-nginx.yml @@ -29,6 +29,7 @@ content: | server { server_name analytics.openneo.net; + listen 80; listen [::]:80; if ($host = analytics.openneo.net) { return 301 https://$host$request_uri; @@ -37,6 +38,7 @@ server { server_name analytics.openneo.net; + listen 443; listen [::]:443 ssl; ssl_certificate /etc/letsencrypt/live/analytics.openneo.net/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/analytics.openneo.net/privkey.pem;