certbot-compatibility-test: fix breaking tests (#9955)

Recently our test environments were upgraded to use Docker 26, which
enabled ipv6 loopback by default in containers. This caused tests to
start failing due to an nginx test config which was the sole listener
for ipv6.

This simply removes that ipv6 listen directive in the config, and the
archived version we use for testing.
This commit is contained in:
Will Greenberg
2024-06-20 11:37:28 -07:00
committed by GitHub
parent bf64e7f4e4
commit 95976762ac
2 changed files with 0 additions and 1 deletions

View File

@@ -19,7 +19,6 @@
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;