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.
This commit is contained in:
Emi Matchu 2024-02-13 08:53:55 -08:00
parent 8633124883
commit 51d9804e14

View file

@ -29,6 +29,7 @@
content: | content: |
server { server {
server_name analytics.openneo.net; server_name analytics.openneo.net;
listen 80;
listen [::]:80; listen [::]:80;
if ($host = analytics.openneo.net) { if ($host = analytics.openneo.net) {
return 301 https://$host$request_uri; return 301 https://$host$request_uri;
@ -37,6 +38,7 @@
server { server {
server_name analytics.openneo.net; server_name analytics.openneo.net;
listen 443;
listen [::]:443 ssl; listen [::]:443 ssl;
ssl_certificate /etc/letsencrypt/live/analytics.openneo.net/fullchain.pem; ssl_certificate /etc/letsencrypt/live/analytics.openneo.net/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/analytics.openneo.net/privkey.pem; ssl_certificate_key /etc/letsencrypt/live/analytics.openneo.net/privkey.pem;