问题:
在nginx.conf配置中, server_name 为 localhost 时可以正常访问,但改成自定义的域名后无法访问
解决方法:
- Window系统
修改本地hosts文件,一般路径在:C:\Windows\System32\drivers\etc\hosts
在文件最后行添加一项配置:
127.0.0.1 www.mytest.com
www.mytest.com为自定义域名
- Linux系统
修改 /etc/host 文件,添加一项配置:
www.mytest.com 127.0.0.1
修改 /etc/hosts 文件,添加一项配置:
127.0.0.1 www.mytest.com