What is the bracket wrapped colon notation in Nginx server blocks?
I often see this in Nginx server blocks but I have no idea what it means and it doesn't Google well.
server {
listen [::]:80 default_server;
}
What does the [::]
mean?
Solution 1:
It is the IPv6 notation for all interfaces.