Nginx配置多个基于域名的虚拟主机+实验环境搭建+测试
0.说明
使用Nginx可以配置基于域名的虚拟主机、基于端口的虚拟主机和基于端口的虚拟主机,比较常用的是基于域名的虚拟主机,这里要做的配置是基于域名的虚拟主机,并且是配置多个基于域名的虚拟主机。
关于Nginx配置文件的说明可以参考官方文档,同时也可以参考老男孩老师的书籍《跟老男孩学Linux运维:Web集群实战》,讲解得非常好!
1.实验环境
关于Nginx的详细安装配置,可以参考另一篇博文《在CentOS上编译安装Nginx+实验环境搭建+测试》。
本次实验的测试环境使用的宿主机操作系统为Windows 7,在Vmware虚拟机安装CentOS 6.5,说明如下:
宿主机操作系统Windows 7
虚拟机安装的操作系统CentOS 6.5
虚拟机操作系统上网方式NAT
而当使用NAT的方式进行上网时虚拟机、宿主机之间的网络连接关系可如下所示:

关于为什么网络拓扑结构是这样的,这里不展开说明,可以参考博主的另一篇博文《在实践中深入理解VMware虚拟机的上网模式NAT模式》,这篇文章深入地分析了VMware虚拟机使用NAT模式上网时的网络结构细节,相信看完这篇文章后,这里搭建Nginx的实验环境也就很容易理解了。
另外需要注意的是这里安装的CentOS 6.5操作系统使用了最小化安装,并且只定制安装了一些常用的开发工具如gcc等,其版本信息如下:
|
1
2
3
4
5
6
|
[root@leaf ~]# cat /etc/redhat-release CentOS release 6.5 (Final)[root@leaf ~]# uname -r2.6.32-431.el6.x86_64[root@leaf ~]# uname -mx86_64 |
2.配置一个基于域名的虚拟主机与测试
先启动Nginx,验证服务是否正常:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[root@leaf ~]# /application/nginx/sbin/nginx [root@leaf ~]# netstat -lnp | grep 80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 6881/nginx unix 2 [ ACC ] STREAM LISTENING 9180 1/init @/com/ubuntu/upstart[root@leaf ~]# curl localhost<h1>Hello, I'm xpleaf.</h1>[root@leaf ~]# LANG=en[root@leaf ~]# wget localhost--2017-02-24 13:33:43-- http://localhost/Resolving localhost... ::1, 127.0.0.1Connecting to localhost|::1|:80... failed: Connection refused.Connecting to localhost|127.0.0.1|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 28 [text/html]Saving to: `index.html.1'100%[======================================>] 28 --.-K/s in 0s 2017-02-24 13:33:43 (1.87 MB/s) - `index.html.1' saved [28/28] |
从上面的输出可以看到,此时Nginx是可以正常运行和提供服务的。
(1)实验准备:最小化Nginx的主配置文件nginx.conf
Nginx的配置文件在安装目录下的conf目录中:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
[root@leaf ~]# tree /application/nginx/application/nginx|-- client_body_temp|-- conf| |-- fastcgi.conf| |-- fastcgi.conf.default| |-- fastcgi_params| |-- fastcgi_params.default| |-- koi-utf| |-- koi-win| |-- mime.types| |-- mime.types.default| |-- nginx.conf| |-- nginx.conf.default| |-- scgi_params| |-- scgi_params.default| |-- uwsgi_params| |-- uwsgi_params.default| `-- win-utf|-- fastcgi_temp|-- html| |-- 50x.html| |-- index.html| `-- index.html.source|-- logs| |-- access.log| |-- error.log| `-- nginx.pid|-- proxy_temp|-- sbin| `-- nginx|-- scgi_temp`-- uwsgi_temp |
nginx.conf便是主配置文件,nginx.conf.default则是它的备份,该配置文件有数百行:
|
1
2
|
[root@leaf conf]# wc -l nginx.conf117 nginx.conf |
为了学习的方便,可以考虑将其注释内容去掉:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
[root@leaf conf]# egrep -v "#|^$" nginx.conf.default >nginx.conf[root@leaf conf]# cat nginx.confworker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }}[root@leaf conf]# wc -l nginx.conf22 nginx.conf |
去掉了注释和空白行后只有22行,就很方便我们待会做实验时进行配置了。
(2)修改配置文件
假设我们的Nginx为站点www.xpleaf.cn服务,则可以将主配置文件修改为如下:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[root@leaf conf]# cat nginx.confworker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name www.xpleaf.com; location / { root html/www; index index.html index.htm; } }} |
主要是修改了第12行和第14行,其中第14行说明该站点的根目录的html文件在html/www/目录中。
(3)创建域名对应的站点目录及文件
|
1
2
3
4
5
|
[root@leaf nginx]# cd html/[root@leaf html]# mkdir www[root@leaf html]# echo "This page is: www.xpleaf.cn">www/index.html [root@leaf html]# cat www/index.html This page is: www.xpleaf.cn |
(4)重新启动Nginx服务
|
1
2
3
4
|
[root@leaf html]# /application/nginx/sbin/nginx -t # 检查Nginx配置语法nginx: the configuration file /application/nginx-1.6.3//conf/nginx.conf syntax is oknginx: configuration file /application/nginx-1.6.3//conf/nginx.conf test is successful[root@leaf html]# /application/nginx/sbin/nginx -s reload # 优雅重启Nginx |
(5)在CentOS 6.5上进行测试
因为上面我们设置的域名www.xpleaf.cn实际是可能不存在,但为了达到测试的目的,即当访问www.xpleaf.cn时,能够解析到我们CentOS上的IP地址,从而可以访问其上面的Nginx服务,达到访问Nginx虚拟主机的目的,所以在CentOS上进行测试时,我们需要修改/etc/hosts文件,让www.xpleaf.cn解析为CentOS的IP地址:
|
1
2
3
|
[root@leaf html]# echo "127.0.0.1 www.xpleaf.cn" >>/etc/hosts[root@leaf html]# tail -1 /etc/hosts127.0.0.1 www.xpleaf.cn |
此时,在CentOS上使用curl命令和wget命令来访问www.xpleaf.cn,查看测试结果:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[root@leaf html]# curl www.xpleaf.cnThis page is: www.xpleaf.cn[root@leaf html]# wget www.xpleaf.cn--2017-02-24 13:58:29-- http://www.xpleaf.cn/Resolving www.xpleaf.cn... 127.0.0.1Connecting to www.xpleaf.cn|127.0.0.1|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 28 [text/html]Saving to: `index.html.1'100%[======================================>] 28 --.-K/s in 0s 2017-02-24 13:58:29 (2.24 MB/s) - `index.html.1' saved [28/28] |
从输出结果可以知道,此时Nginx成功地为域名为www.xpleaf.cn的虚拟主机提供了服务。
(6)在Windows 7主机上进行测试
为了达到前面说的目的,在Windows操作系统上同样需要修改hosts文件,Windows 7的hosts文件在C:\Windows\System32\drivers\etc,同样添加下面一行:
|
1
|
10.0.0.101 www.xpleaf.cn |
这时在浏览器中输入地址www.xpleaf.cn,查看返回的结果:

可以看到,可以正常访问。
3.配置多个基于域名的虚拟主机与测试
上面的实验中只有一个站点www.xpleaf.cn,假如还有两个站点bbs.xpleaf.cn和blog.xpleaf.cn,同样需要Nginx来提供服务,这时就需要配置多个基于域名的虚拟主机了,不过有了上面的基础后,下面的操作就会容易很多,因为思路都是一样的。
(1)修改主配置文件nginx.conf
在前面的基础上,修改为如下:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
[root@leaf conf]# cat nginx.confworker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name www.xpleaf.com; location / { root html/www; index index.html index.htm; } } server { listen 80; server_name bbs.xpleaf.com; location / { root html/bbs; index index.html index.htm; } } server { listen 80; server_name blog.xpleaf.com; location / { root html/blog; index index.html index.htm; } }} |
(2)创建域名对应的站点目录及文件
|
1
2
3
4
5
6
7
|
[root@leaf html]# mkdir bbs[root@leaf html]# echo "This page is: bbs.xpleaf.cn" >bbs/index.html[root@leaf html]# mkdir blog[root@leaf html]# echo "This page is: blog.xpleaf.cn" >blog/index.html [root@leaf html]# cat bbs/index.html blog/index.html This page is: bbs.xpleaf.cnThis page is: blog.xpleaf.cn |
(3)重新启动Nginx服务
|
1
2
3
4
|
[root@leaf html]# /application/nginx/sbin/nginx -t # 检查Nginx配置语法nginx: the configuration file /application/nginx-1.6.3//conf/nginx.conf syntax is oknginx: configuration file /application/nginx-1.6.3//conf/nginx.conf test is successful[root@leaf html]# /application/nginx/sbin/nginx -s reload # 优雅重启Nginx |
(4)在CentOS 6.5上进行测试
在原来基础上,修改/etc/hosts文件,在127.0.0.1地址后添加bbs.xpleaf.cn和blog.xpleaf.cn两个域名:
|
1
2
|
[root@leaf html]# tail -1 /etc/hosts127.0.0.1 www.xpleaf.cn bbs.xpleaf.cn blog.xpleaf.cn |
使用curl命令和wget命令进行测试:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[root@leaf html]# curl bbs.xpleaf.cnThis page is: www.xpleaf.cn[root@leaf html]# curl blog.xpleaf.cnThis page is: www.xpleaf.cn[root@leaf html]# wget bbs.xpleaf.cn--2017-02-24 14:19:54-- http://bbs.xpleaf.cn/Resolving bbs.xpleaf.cn... 127.0.0.1Connecting to bbs.xpleaf.cn|127.0.0.1|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 28 [text/html]Saving to: `index.html.2'100%[======================================>] 28 --.-K/s in 0s 2017-02-24 14:19:54 (2.37 MB/s) - `index.html.2' saved [28/28][root@leaf html]# wget blog.xpleaf.cn--2017-02-24 14:20:00-- http://blog.xpleaf.cn/Resolving blog.xpleaf.cn... 127.0.0.1Connecting to blog.xpleaf.cn|127.0.0.1|:80... connected.HTTP request sent, awaiting response... 200 OKLength: 28 [text/html]Saving to: `index.html.3'100%[======================================>] 28 --.-K/s in 0s 2017-02-24 14:20:00 (2.24 MB/s) - `index.html.3' saved [28/28] |
从上面结果可以知道,Nginx为各个虚拟主机正常提供服务。
(5)在Windows 7主机上进行测试
在原来基础上,修改hosts文件,如下:
|
1
|
10.0.0.101 www.xpleaf.cn bbs.xpleaf.cn blog.xpleaf.cn |
在浏览器上分别访问各个域名,查看其返回结果:
访问www.xpleaf.cn:

访问bbs.xpleaf.cn:

访问blog.xpleaf.cn:

可以看到访问每个域名都返回了期待的页面,说明测试成功!
6.进阶:Nginx虚拟主机的别名配置
所以虚拟主机别名,就是为虚拟主机设置除了主域名以外的一个或多个域名名字,这样就能实现用户访问的多个域名对应同一个虚拟主机网站的功能。
以www.xpleaf.cn为例,希望添加一个别名xpleaf.cn,这样当访问xpleaf.cn时,和访问www.xpleaf.cn得到的结果是一样的。
其实配置的思路非常简单,只需要在上面nginx.conf配置文件中www.xpleaf.cn的server域中再添加一个xpleaf.cn的域名就可以了,如下:
|
1
2
3
4
5
6
7
8
|
server { listen 80; server_name www.xpleaf.com xpleaf.cn; location / { root html/www; index index.html index.htm; } } |
测试的话依然按照前面的方法进行,即先检查Nginx配置文件、平滑重启Nginx服务、配置hosts文件,最后通过命令行或浏览器的方式进行验证,因为跟前面是一样的,所以这里就不展开了。
5.下一步要做什么
可以考虑配置与测试基于端口的虚拟主机和基于IP地址的虚拟主机,其实只要把上面的弄清楚了,再做这些配置就会容易很多了。
7.参考资料
《跟老男孩学Linux运维:Web集群实战》
Nginx配置多个基于域名的虚拟主机+实验环境搭建+测试的更多相关文章
- nginx配置基于域名的虚拟主机
其实基于域名和基于ip的虚拟主机配置是差不多的,在配置基于ip的虚拟主机上我们只需要修改几个地方就能变成基于域名的虚拟主机,一个是要修改域名,一个是host文件直接看代码 [root@localhos ...
- nginx基于域名的虚拟主机配置(本地分布式项目域名配置及测试方法)
最有用的虚拟主机配置方式. 一个域名只能绑定一个ip地址,一个ip地址可以被多个域名绑定. 可以修改host文件实现域名访问. 前提:即使我们在nginx中配置基于域名的虚拟主机,也需要域名解析,即n ...
- Nginx总结(四)基于域名的虚拟主机配置
前面讲了如何安装配置Nginx,大家可以去这里看看nginx系列文章:https://www.cnblogs.com/zhangweizhong/category/1529997.html 今天要说的 ...
- 十八.搭建Nginx服务器、配置网页认证、基于域名的虚拟主机、ssl虚拟主机
配置要求: client:192.168.4.10 proxy:192.168.4.5(eth0) 192.168.2.5(eth1) web1:192.168.2.100 web2:192.168. ...
- Nginx--服务部署、基于域名的虚拟主机配置
一.服务部署 1.预处理 安装CentOS ,配置hosts.静态IP.设置必要的安全参数等(略) 1-1.系统环境 [root@vnx ~]# cat /etc/redhat-release Cen ...
- Nginx三种模式的虚拟主机(附Apache基于域名的虚拟主机)
1.安装nginx # pcre中文"perl兼容正则表达式",安装pcre库是为了让nginx支持具备URL重写功能 # 的Rewrite模块,rewrite可以实现动态页面转成 ...
- 高级运维(二):搭建Nginx服务器、用户认证、基于域名的虚拟主机、SSL虚拟主机、Nginx反向代理
一.搭建Nginx服务器 目标: 在IP地址为192.168.4.5的主机上安装部署Nginx服务,并可以将Nginx服务器,要求编译时启用如下功能: 1> SSL加密功能 2> 设置Ng ...
- CentOS 7运维管理笔记(8)----Apache基于域名的虚拟主机配置
使用基于域名的虚拟主机配置是比较流行的方式,可以在同一个IP上配置多个域名并且都通过80端口访问. (1) 在网卡 eth0的第五个接口上配置 192.168.1.215 这个地址: (2) 配置/e ...
- Nginx基于域名的虚拟主机
一.基于域名的虚拟主机 修改配置文件/usr/local/nginx/conf/nginx.conf 创建新的虚拟主机的根目录和默认网页index.html 重新加载nginx的配置文件 查看两个虚拟 ...
随机推荐
- ubuntu14.04上引入thinkphp5类库遇到的一个问题
ubuntu14.04 上加载OSS\OssClient() ;--->在vendor文件夹下的文件要用大写OSS 小写的报错 无法加载类库 Vendor('OSS.autoload');//引 ...
- codeforces 412div.2
A CodeForces 807A Is it rated? B CodeForces 807B T-Shirt Hunt C CodeForces 807C Success ...
- 线性回归,逻辑回归,神经网络,SVM的总结
目录 线性回归,逻辑回归,神经网络,SVM的总结 线性回归,逻辑回归,神经网络,SVM的总结 详细的学习笔记. markdown的公式编辑手册. 回归的含义: 回归就是指根据之前的数据预测一个准确的输 ...
- 004_strace工具
strace - trace system calls and signals 一.strace工具详解 之前线上主机上8351 进程夯死导致无法获悉进程信息,监控程序使用ps 命令查看进程信息至/p ...
- backtrace和backtrace_symbols
一般察看函数运行时堆栈的方法是使用GDB(bt命令)之类的外部调试器,但是,有些时候为了分析程序的BUG,(主要针对长时间运行程序的分析),在程序出错时打印出函数的调用堆栈是非常有用的. 在glibc ...
- bootstrap Autocomplete
首先应用文件(已上传到文件,需要可自行下载) <link href="~/bower_components/select2/dist/css/select2.css" rel ...
- SwipeRefreshLayout详解和自定义上拉加载更多
个人主页 演示Demo下载 本文重点介绍了SwipeRefreshLayout的使用和自定View继承SwipeRefreshLayout添加上拉加载更多的功能. 介绍之前,先来看一下SwipeRef ...
- spring、springMVC、mybatis配置文件
一.jdbc.properties 文件: driver=com.mysql.jdbc.Driverurl=jdbc:mysql://192.168.31.xxx:3306/abc?useUnicod ...
- Oracle12c 性能优化攻略:攻略1-3: 匹配表类型与业务需求
注:目录表 <Oracle12c 性能优化攻略:攻略目录表> 问题描述 你刚开始使用oracle数据库,并且学习了一些关于可用的各种表类型的知识.例如:可以在堆组织表.索引组织表等之间支出 ...
- pythonz之__new__与__init__
new __new__是用来控制对象的生成过程,在对象生成之前 __init__是用来完善对象的 如果new方法不返回对象(return super().new(cls)),则不会调用init函数 c ...