tracker
tracker copied to clipboard
ansible-semaphore isn't listening on IPv6
Nginx is currently not listening on IPv6. This can be fixed by adding 2 listening directives to /etc/nginx/nginx.conf.
@@ -22,12 +22,14 @@
server {
listen 80;
+ listen [::]:80;
server_name _;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
+ listen [::]:443 ssl;
include /etc/nginx/snippets/ssl.conf;
server_name _;
Thanks for the report and bonus points for the fix. We'll aim to include this in the next release (which will be v18.0).
Argh, missed this one for v18.0! I've just opened a PR to fix this, but it will have to wait until v18.1