- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
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 即可生效。
售前咨询
售后咨询
备案咨询
二维码
TOP