前言
本文将详细记录一下如何在单台服务器上,利用apache的virtualhost(虚拟主机)来搭建多个不同的web站点,并且每个站点独立管理自己的session,下面话不多说了,来一起看看详细的介绍吧。
开发环境
先说下我各项开发环境参数:
- 操作系统: RedHat6.7(CentOS)
- WEB服务器:apache2.2
- php5.6.30
修改Apache配置
apache2.2 的配置文件路径在 /etc/httpd/conf/httpd.conf
我们用下面的命令修改apache的配置文件:
1
|
$ vim /etc/httpd/conf/httpd .conf
|
添加监听端口
找到如下的部分,
1
2
3
4
5
6
7
8
9
10
|
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, in addition to the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80
|
默认的话,应该只会监听80端口,这里我们在后面加上用于另外站点的端口号。例如我们A站点是默认的80端口,B站点计划搭建在8080端口上,最终的配置文件修改成
1
2
3
4
|
...
#Listen 12.34.56.78:80
Listen 80
Listen 8080
|
启动并添加VirtualHost
接着在配置文件中找到下面的章节:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
### Section 3: Virtual Hosts
#
# VirtualHost: If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
NameVirtualHost *:8080
|
上面的代码是我已经修改好的,默认的话,最后两行NameVirtualHost应该也是被注释掉了。 因为我们要启用虚拟主机,所以这里就把我们之前监听的两个端口都设置好。
同时,将之后的配置文件修改成如下的样子,我们先来设置默认的80端口的站点A
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
<VirtualHost *:80>
# ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/webA
ServerName webA
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
< /VirtualHost >
|
默认的Apache是没有开启VirtualHost的,所以这些代码都是被注释掉了的,我们这里只需要把DocumentRoot和ServerName所在的行去掉注释并且编辑下就好了。
DocumentRoot指的的是我们A站点的网站根目录位置
接下来再补充上8080端口的B站点信息就好了。
1
2
3
4
|
<VirtualHost *:8080>
DocumentRoot /var/www/webB
ServerName webB
< /VirtualHost >
|
到这里,重启一下Apache服务(service httpd restart),就可以访问两个不同的站点了。
独立Session
如果我们的A,B两个站点的登录逻辑是用的一套代码,那我们使用后会发现,A站点和B站点的Session是共享的,也就是说,如果用户在A站点登录了之后,B站点是无需登录,自动也处于登录状态; 用户在A站点退出后,也会自动从B站点退出。
这显然不是我们想要的结果,原因就是A,B两个站点公用了一套Session体系,所以才会造成这样的问题。
解决的办法就是我们指定站点中session的存放位置。
同样是修改配置文件中指定虚拟主机,我们以站点B做为示例,修改配置文件如下:
1
2
3
4
5
6
7
8
|
<VirtualHost *:8080>
DocumentRoot /var/www/webB
ServerName webB
<Directory "/var/www/webB" >
AllowOverride All
php_value session.save_path "/var/lib/php/session_B"
< /Directory >
< /VirtualHost >
|
php_value中 session.save_path 其实就是php.ini文件中的session.save_path字段,这里我们其他值都使用默认的php.ini配置文件,唯独指定了session的文件存放路径,默认的php session文件是存储在 /var/lib/php/session/文件夹中。
再试着去访问以下站点B,并且进行一些session的存取操作,回头到/var/lib/php/session_B文件夹中,就会发现新的session文件了。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:http://lipeng1667.github.io/2017/06/29/apache-virtualhost-multi-port/