当前位置: 首页 > 新闻动态 > 技术教程

windows下Nginx多域名怎么配置

作者:王林 浏览: 发布日期:2023-06-02
[导读]:1.windows下安装nginx的目录结构如下:2.在nginx-1.12.1目录下conf/nginx.conf内容#usernobody;worker_processes1;events{worker_connections1024;}http{includemime.types;default_typeapplication/octet-stream;sendfileon;keepalive_timeout65;server{listen80default_server;server_n

1. windows下安装nginx的目录结构如下:

2. 在nginx-1.12.1目录下conf/nginx.conf 内容

#user nobody;
worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include    mime.types;
  default_type application/octet-stream;
  sendfile    on;
  keepalive_timeout 65;
  server {
    listen    80 default_server;
    server_name localhost default_server;
    root  html;
    location / {
      index index.html index.htm;
    }
}
  include ../vhost/*.conf;
}

3. vhost 目录下 a_com.conf 内容:

server {
    listen    80;
    server_name www.a.com;
    root  d:/test/;
    location / {
      index index.html index.htm;
    }
}

4. vhost 目录下 b_com.conf 内容:

server {
    listen    80;
    server_name www.b.com;
    root  d:/test2/;
    location / {
      index index.html index.htm;
    }
}

5. 在本地磁盘d盘下 新建 test 和 test2目录,并新建 index.html文件

6. 在本地磁盘c盘中c:\windows\system32\drivers\etc 下修改hosts 如下

127.0.0.1    www.a.com
127.0.0.1    www.b.com

7. 用cmd进入nginx安装目录下执行

    nginx.exe  开始   

    nginx -t  //检测语法

    nginx -s reload  //重新启动

    nginx -s stop  //停止

8. 打开浏览器输入网址

免责声明:转载请注明出处:http://shjed.com/news/226960.html

扫一扫高效沟通

多一份参考总有益处

免费领取网站策划SEO优化策划方案

请填写下方表单,我们会尽快与您联系
感谢您的咨询,我们会尽快给您回复!