Comment 0 for bug 1777019

Revision history for this message
Lee Trager (ltrager) wrote :

nginx is not being configured properly for IPv6 addresses. It is missing the [] around the IPv6 address before the port. This is causing nginx to fail to start which is needed to start the ephemeral environment.

Currently:
upstream maas-regions {
    server 10.0.0.2:5240;
    server fc00::216:3eff:fee4:2cd0:5240;
}

What it should be
upstream maas-regions {
    server 10.0.0.2:5240;
    server [fc00::216:3eff:fee4:2cd0]:5240;
}