Nginx配置多个基于域名的虚拟主机+实验环境搭建+测试

标签:Linux 域名 Nginx

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://xpleaf.blog.51cto.com/9315560/1901284

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

[[email protected] ~]# cat /etc/redhat-release 

CentOS release 6.5 (Final)

[[email protected] ~]# uname -r

2.6.32-431.el6.x86_64

[[email protected] ~]# uname -m

x86_64



2.配置一个基于域名的虚拟主机与测试

先启动Nginx,验证服务是否正常:


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

[[email protected] ~]# /application/nginx/sbin/nginx 

[[email protected] ~]# 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[email protected] ~]# curl localhost

<h1>Hello, I‘m xpleaf.</h1>

[[email protected] ~]# LANG=en

[[email protected] ~]# wget localhost

--2017-02-24 13:33:43--  http://localhost/

Resolving localhost... ::1, 127.0.0.1

Connecting to localhost|::1|:80... failed: Connection refused.

Connecting to localhost|127.0.0.1|:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 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

[[email protected] ~]# 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

[[email protected] conf]# wc -l nginx.conf

117 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

[[email protected] conf]# egrep -v "#|^$" nginx.conf.default >nginx.conf

[[email protected] conf]# cat nginx.conf

worker_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;

        }

    }

}

[[email protected] conf]# wc -l nginx.conf

22 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

[[email protected] conf]# cat nginx.conf

worker_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

[[email protected] nginx]# cd html/

[[email protected] html]# mkdir www

[[email protected] html]# echo "This page is: www.xpleaf.cn">www/index.html 

[[email protected] html]# cat www/index.html 

This page is: www.xpleaf.cn

(4)重新启动Nginx服务


1

2

3

4

[[email protected] html]# /application/nginx/sbin/nginx -t   # 检查Nginx配置语法

nginx: the configuration file /application/nginx-1.6.3//conf/nginx.conf syntax is ok

nginx: configuration file /application/nginx-1.6.3//conf/nginx.conf test is successful

[[email protected] 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

[[email protected] html]# echo "127.0.0.1 www.xpleaf.cn" >>/etc/hosts

[[email protected] html]# tail -1 /etc/hosts

127.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

[[email protected] html]# curl www.xpleaf.cn

This page is: www.xpleaf.cn

[[email protected] html]# wget www.xpleaf.cn

--2017-02-24 13:58:29--  http://www.xpleaf.cn/

Resolving www.xpleaf.cn... 127.0.0.1

Connecting to www.xpleaf.cn|127.0.0.1|:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 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

[[email protected] conf]# cat nginx.conf

worker_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

[[email protected] html]# mkdir bbs

[[email protected] html]# echo "This page is: bbs.xpleaf.cn" >bbs/index.html

[[email protected] html]# mkdir blog

[[email protected] html]# echo "This page is: blog.xpleaf.cn" >blog/index.html   

[[email protected] html]# cat bbs/index.html blog/index.html 

This page is: bbs.xpleaf.cn

This page is: blog.xpleaf.cn

(3)重新启动Nginx服务


1

2

3

4

[[email protected] html]# /application/nginx/sbin/nginx -t   # 检查Nginx配置语法

nginx: the configuration file /application/nginx-1.6.3//conf/nginx.conf syntax is ok

nginx: configuration file /application/nginx-1.6.3//conf/nginx.conf test is successful

[[email protected] 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

[[email protected] html]# tail -1 /etc/hosts

127.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

[[email protected] html]# curl bbs.xpleaf.cn

This page is: www.xpleaf.cn

[[email protected] html]# curl blog.xpleaf.cn

This page is: www.xpleaf.cn

[[email protected] html]# wget bbs.xpleaf.cn

--2017-02-24 14:19:54--  http://bbs.xpleaf.cn/

Resolving bbs.xpleaf.cn... 127.0.0.1

Connecting to bbs.xpleaf.cn|127.0.0.1|:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 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]

[[email protected] html]# wget blog.xpleaf.cn

--2017-02-24 14:20:00--  http://blog.xpleaf.cn/

Resolving blog.xpleaf.cn... 127.0.0.1

Connecting to blog.xpleaf.cn|127.0.0.1|:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 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集群实战》

时间: 2024-10-25 15:00:11

Nginx配置多个基于域名的虚拟主机+实验环境搭建+测试的相关文章

nginx基于域名的虚拟主机配置

与apache服务器类似,nginx也有基于域名,IP及端口的虚拟主机配置,在实际工作场景中,基于域名的虚拟主机配置较常见.nginx服务的主要配置文件nginx.conf[[email protected] conf]# ls -l nginx.conf-rw-r--r-- 1 root root 2788 Jan 14 17:41 nginx.conf[[email protected] conf]# pwd/application/nginx/conf 去掉注释及空行后的配置文件[[ema

13_搭建Nginx服务器、配置网页认证、基于域名的虚拟主机、ssl虚拟主机

官方yum源:[nginx]name=nginx repobaseurl=http://nginx.org/packages/centos/$releasever/$basearch/gpgcheck=0enabled=1 pc71. 安装nginx]# yum -y install nginx]# nginx]# nginx -Vnginx version: nginx/1.16.1]# netstat -anptu | grep nginx]# curl http://10.10.11.10

Nginx基于域名的虚拟主机

1.1 问题 沿用练习二,配置基于域名的虚拟主机,实现以下目标: 实现两个基于域名的虚拟主机,域名分别为www.aa.com和www.bb.com 对域名为www.aa.com的站点进行用户认证,用户名称为tom,密码为123456 1.2 方案 修改Nginx配置文件,添加server容器实现虚拟主机功能:对于需要进行用户认证的虚拟主机添加auth认证语句. 3.3 步骤 实现此案例需要按照如下步骤进行. 步骤一:修改配置文件 1)修改Nginx服务配置,添加相关虚拟主机配置如下 [[emai

nginx服务做用户认证和基于域名的虚拟主机

实验一.用nginx怎么实现用户访问时的认证 一.目标        通过调整Nginx服务端配置,实现以下目标: 访问Web页面需要进行用户认证 用户名为:tom,密码为:123456 二.方案         通过Nginx实现Web页面的认证,需要修改Nginx配置文件,在配置文件中添加auth语句实现用户认证.    最后使用htpasswd命令创建用户及密码即可,服务端:192.168.4.102,客户端:192.168.4.101 三.实施步骤(nginx服务安装见我的"搭建ngin

CentOS7.4—nginx应用之基于域名的虚拟主机

Nginx功能应用-虚拟主机目录:第一部分:准备工作第二部分:搭建nginx第三部分:搭建基于域名的虚拟主机 第一部分 准备工作一:服务器:Linux系统-CentOS 7.4:IP地址:192.168.80.10 客户端:以WIN7为例,测试验证结果,与服务器在同一网段:IP地址:192.168.80.2 二:准备压缩包 三:将防火墙与selinux关闭 第二部分 安装Nginx服务一:安装编译工具与插件[[email protected] ~]# yum -y install \ gcc \

CentOS 7运维管理笔记(7)----Apache基于域名的虚拟主机配置

使用基于域名的虚拟主机配置是比较流行的方式,可以在同一个IP上配置多个域名并且都通过80端口访问. (1) 在网卡 eth0的第五个接口上配置 192.168.1.215 这个地址: (2) 配置/etc/hosts文件,192.168.1.215 对应的域名如下: 做ping测试,保证ip是导通的: (3) 建立虚拟主机存放网页的根目录,并创建首页文件的 index.html 文件 (4)修改 /usr/local/apache2/conf/httpd.conf 文件,使得服务器开始Liste

nginx学习笔记之基于端口的虚拟主机基于主机名的虚拟主机root、alias、index配置

nginx学习笔记之基于端口的虚拟主机基于主机名的虚拟主机root.alias.index配置 实验环境: centos 测试节点IP:172.16.3.101 基于端口的虚拟主机: vim /etc/nginx/nginx.conf # 向里面的http {}里面加入如下内容   server { # server定义一个虚拟主机         listen 8080; # 监听本机所有IP端口8080         server_name www.test.com; # 虚拟主机名为:w

?搭建LAMP环境及快速部署双网站并实现基于域名的虚拟主机

本节所讲内容: 实战:搭建LAMP环境及快速部署双网站并实现基于域名的虚拟主机 LAMP架构:??? Linux+Apache+Mysql+PHP Linux+Apache+Mysql/MariaDB+Perl/PHP/Python一组常用来搭建动态网站或者服务器的开源软件,共同组成了一个强大的Web应用程序平台. 一.安装需要的软件包 [[email protected] ~]# yum install httpd mysql-server mysql php php-mysql  -y ht

httpd基于域名的虚拟主机

搭建基于域名的网站虚拟主机. web虚拟主机服务器 centos6.5 192.168.200.202 搭建基于域名的虚拟主机 dns.ftp服务器 centos6.5 192.168.200.254 提供DNS解析,ftp下载 1:在dns服务器上设置dns解析: 修改dns的配置文件,设置区域文件名称和所在位置. [[email protected] ~]# cd /var/named/chroot/etc/ [[email protected] etc]# vi named.conf  [