diff options
author | 2024-08-25 19:59:05 +0200 | |
---|---|---|
committer | 2024-08-25 20:32:42 +0100 | |
commit | b9bceb426e473cd9a9c3bf7f77c259ae63c032dc (patch) | |
tree | 77432ef88611d3431799b6f6d40b95c2f201953d | |
parent | Kill remaining turing host variables (diff) |
Bind NGINX hosts on IPv6 as well
Previously only Jitsi would answer when requesting on IPv6.
-rw-r--r-- | ansible/host_vars/lovelace/nginx.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ansible/host_vars/lovelace/nginx.yml b/ansible/host_vars/lovelace/nginx.yml index 02e7799..aa448c8 100644 --- a/ansible/host_vars/lovelace/nginx.yml +++ b/ansible/host_vars/lovelace/nginx.yml @@ -4,6 +4,7 @@ nginx_configs: prometheus.lovelace.box.wtf.conf: | server { listen 443; + listen [::]:443; server_name prometheus.lovelace.box.pydis.wtf; ssl_certificate /etc/letsencrypt/live/prometheus.lovelace.box.pydis.wtf/fullchain.pem; @@ -28,6 +29,7 @@ nginx_configs: files.pydis.wtf.conf: | server { listen 443; + listen [::]:443; server_name files.pydis.wtf cloud.native.is.fun.and.easy.pydis.wtf; root /var/www/files.pydis.wtf; @@ -42,6 +44,7 @@ nginx_configs: propaganda.pydis.wtf.conf: | server { listen 443; + listen [::]:443; server_name propaganda.pydis.wtf; root /var/www/propaganda.pydis.wtf; |