咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
linux下
首先打开nginx域名配置文件存放目录:/usr/local/nginx/conf/servers ,如要新增绑定域名bind.landui.com
我们看下一个虚拟主机配置实例:
server { listen 80; server_name www.landui.com; #绑定域名 index index.htm index.html index.php; #默认文件 root /home/www/web; #网站根目录 include location.conf; #调用其他规则 }
修改 server_name字段为 server_name www.landui.com bind.landui.com;
然后保存即可。
server { listen 80; server_name www.landui.com bind.landui.com; #绑定域名 index index.htm index.html index.php; #默认文件 root /home/www/web; #网站根目录 include location.conf; #调用其他规则 }
然后重起nginx服务器,域名就绑定成功了
nginx服务(www.landui.com)器重起命令:/etc/init.d/nginx restart
nginx支持平滑重启 /etc/init.d/nginx reload 即可生效。