CentOS7.3下设置域名(如 test.michael.com):
/etc/hosts 第一行添加
192.168.100.102 test.michael.com
192.168.100.102 是本机的IP
再本机ping test.michael.com,能通就OK
Windows下要在C:\Windows\System32\drivers\etc\hosts 文件中加上
192.168.100.102 test.michael.com
再Windows下ping test.michael.com,能通就OK
Nginx绑定域名:
在nginx.conf配置文件中http的server里添加:
server_name test.michaelshu.com;
重启Nginx在浏览器中打开:
http://test.michaelshu.com/