Nginx多域名配置教程 windows下Nginx多域名简单配置教程

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Nginx多域名配置教程 windows下Nginx多域名简单配置教程

chenio   2021-03-24 我要评论
想了解windows下Nginx多域名简单配置教程的相关内容吗,chenio在本文为您仔细讲解Nginx多域名配置教程的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:windows,Nginx,域名,下面大家一起来学习吧。

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

github仓库:https://github.com/chengzao

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们