首页 > 代码库 > Linux下配置Apache为多端口

Linux下配置Apache为多端口

1、打开Apache的配置文件httpd.conf,在Listen 80处另起一行输入Listen 8080(监听8080端口),要想再添加端口可依次添加

2、在httpd.conf文件最后一行添加:注:默认的80路径为/var/www/html/,我这是在这个下面的文件夹下添加test文件夹为测试

NameVirtualHost *:8080<VirtualHost *:8080>ServerName localhost:8080DocumentRoot "/var/www/html/test/″
<Directory "/var/www/html/test/">
    Options FollowSymLinks IncludesNOEXEC    AllowOverride All    Order Deny,Allow    Allow from all</Directory>
</VirtualHost>
3、重启Apache:# service iptables restart
4、把8080(监听的端口)开放防火墙
ok,就这么简单 大功告成

Linux下配置Apache为多端口