忘记是哪次更新osx后,本地使用brew安装的nginx 1.6突然就不能访问localhost了,只能使用127.0.0.1和外部IP来访问,百思不得其解。
后来突然哪次想起来,看了一眼到localhost的访问,ipv4抓不到包,心想着是不是localhost被解析到ipv6于是访问不了?
于是修改了下nginx的监听配置
1 2 |
listen 80; listen [::]:80; # 新加入这一行 |
reload一下nginx,访问localhost果然恢复了!