IPv6 Nginx On Multiple Sites
To configure Ipv6 on multiple domains on an nginx server you must include the listen [::]:80; line in every server. The trick is to also include listen [::]:80 default_server ipv6only=on; onto the server server/domain that nginx is listening to. Here is an example configuration with two sites both of which respond to IPv4 and Ipv6:…