I was looking at my nginx config file I noticed two this.
server {
listen 80 default_server;
listen [::]:80 default_server;
index index.html;
}
I understand this part listen 80 default_server;
it tells nginx to listen on port 80 and set that as the "default_server" but I do not understand the second line.
listen [::]:80 default_server;
It appears I am setting the default server again on port 80 but I do not really understand the [::]
part of it at all.
Can someone explain to me what this configuration does?
question from:
https://stackoverflow.com/questions/34305351/what-does-mean-in-my-nginx-config-file 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…