apache httpd配置多个端口

apache配置多个http端口

方法一:使用httpd-vhosts

  1. 进入apache配置目录,如/usr/local/apache/conf/
  2. 打开httpd.conf
  3. 配置多个监听窗口,81,82
    ServerName localhost:81  
    # Listen 80
    Listen 81  
    Listen 82 
    
  4. 找到#Include conf/extra/httpd-vhosts.conf,去掉#号,解除注释
  5. 进入/usr/local/apache/conf/extra目录,打开httpd-vhosts.conf文件
  6. 配置NameVirtualHost *:81
    <VirtualHost *:81>
        ServerAdmin host1.example.com
        DocumentRoot "/home/public/web/host1"
        ServerName localhost:81
        ServerAlias localhost:81
        ErrorLog "logs/host1.example.com-error_log"
       #CustomLog "logs/host1.example.com-access_log common"
    </VirtualHost>
        
    <VirtualHost *:82>
        ServerAdmin host2.example.com
        DocumentRoot "/home/public/web/host2"
        ServerName localhost:82
        ErrorLog "logs/host1.example.com-error_log"
       #CustomLog "logs/host1.example.com-access_log common"
    </VirtualHost> 
    

方法二:只修改 httpd.conf

  1. 进入apache配置目录,如/usr/local/apache/conf/
  2. 打开httpd.conf
  3. 配置多个监听窗口,81,82
    Listen   81
    Listen   82
    
  4. 并在文件的最后增加:
    <VirtualHost *:81>
    DocumentRoot /home/public/web/host1
    ServerName localhost:81
    </VirtualHost>
    
    <Directory /home/public/web/host1>
     Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    
    <VirtualHost *:82>
    DocumentRoot /home/public/web/host2
    ServerName localhost:82
    </VirtualHost>
    
    <Directory /home/public/web/host2>
     Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>
    

apache不同版本 目录权限设置


  1. old使用
Order allow,deny
Allow from all
  1. new使用
Require all granted
  1. new example
#add for WWW
Listen 91
<VirtualHost *:91>
DocumentRoot  "D:/IDE/WWW"
ServerName localhost:91
</VirtualHost>

<Directory "D:/IDE/WWW">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>
  • 5
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值