apache 2.4 配置多端口虚拟目录
kevin.Zhu 发布于:2013-1-16 0:14 分类:Apache 有 17 人浏览,获得评论 0 条
1、配置httpd.conf
#Listen 0.0.0.0:80
Listen 80
Listen 81
2、开启虚拟站点
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
#修改为
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
3、配置conf/extra/httpd-vhosts.conf
<VirtualHost *:81>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "/data/wwwroot"
ServerName 81
ErrorLog "logs/dummy-host.localhost-error.log"
CustomLog "logs/dummy-host.localhost-access.log" common
<Directory "/data/wwwroot">
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
4、访问站点出现you don't have permission to access / on this server(Apache Server权限访问问题)
修改httpd.conf:
<Directory />
AllowOverride none
Require all denied
</Directory>
<Directory />
AllowOverride none
# Require all denied
</Directory>