首页 > 运维 > nginx > 正文

windows下Nginx多域名怎么配置

王林
发布: 2023-06-02 21:43:54
转载
1942 人浏览过

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

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. 打开浏览器输入网址

以上是windows下Nginx多域名怎么配置的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:yisu.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!