My nginx config looks like this:
server {
listen 80 default_server;
index index.html;
}
Must I add listen [::]:80 default_server; or is it not mandatory?
So the config will end up looking like this:
server {
listen 80 default_server;
listen [::]:80 default_server;
index index.html;
}
I found that it is for IPv6 configs, but I am not sure, I understand what does that mean in this context/config file. Could you elaborate more? Sorry, for noob question.
listen [::]:80 default_server;. So this means:- I lost traffic, because people with IPv6 were not able to visit my website?
- What happened for such users? Did they see a blank page when they visited with IPv6 or how they experienced this?
– En0w1na Feb 14 '21 at 02:34listen [::]:80 default_server;don't define AAAA record and everything is okay. Probably I am missing something, but don't understand what. – En0w1na Feb 15 '21 at 08:34