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:
parent
8633124883
commit
51d9804e14
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue