Apache多端口配置

  • 默认为80端口
    Listen 80
  • 增加监听接口(可以添加多个)
    Listen 2525
    Listen 2424
  • 添加配置(两种方法)

    • 1.统一配置在extra/httpd-vhosts.conf中

      在http.conf中找到

  # Virtual hosts 
  # Include conf/extratpd-vhosts.conf
   打开 
  # Virtual hosts 
  Include conf/extratpd-vhosts.conf

打开extratpd-vhosts.conf 添加 配置


    ServerAdmin [email protected]
    DocumentRoot "D:/software/wamp/www/pfws/"
    ServerName localhost
    ErrorLog "logs/dummy-host.localhost-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common

    
        Options FollowSymLinks
        AllowOverride all
        Order deny,allow
        Allow from all
        
  • 2.http.conf最后面添加
    NameVirtualHost *:2525
    <VirtualHost *:2525>
    ServerName localhost:2525
    DocumentRootD:/software/wamp/www/pfws/″
    </VirtualHost>

备注:其实上面的添加的配置代码不一定是这些,特别是在开发环境中安装的集成环境,最好是找到http.conf 原先就有的Directory 设置,直接复制一份代码,修改下DocumentRoot 配置下Listen就可以,实践证明这样出错的几率最低。

你可能感兴趣的:(环境配置)