tracker icon indicating copy to clipboard operation
tracker copied to clipboard

ansible-semaphore isn't listening on IPv6

Open Serverhamster opened this issue 2 years ago • 2 comments

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  _;

Serverhamster avatar Jun 21 '23 07:06 Serverhamster

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).

JedMeister avatar Jun 21 '23 22:06 JedMeister

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

JedMeister avatar Jun 12 '24 09:06 JedMeister