开发者

apache httpd配置多个端口的实现方法

目录
  • 方法一:使用httpd-vhosts
  • 方法二:只修改 httpd.conf
  • apache不同版本 目录权限设置

方法一:使用httpd-vhosts

进入apache配置目录,如/usr/local/apache/conf/

打开httpd.conf

配置多个监听窗口,81,82

ServerName localhost:81  
# Listen 80
Listen 81  
Listen 82 

找到#Include conf/extra/httpd-vhosts.conf,去掉#号,解除注释

进入/usr/local/apache/conf/extra目录,打开httpd-vhosts.conf文http://www.devze.com

配置NameVipythonrtualHost *:81

<VirtualHost *:81&ytwNsWDgt;
    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

进入apache配置目录,如/usr/local/apache/conf/

打开httpd.conf

配置多个监听窗口,81,82

Listen   81
Listen   82

并在文件的最后增加:

<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>
php Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>

apache不同版本 目录权限设置

old使用

Order allow,deny
Allow from all

new使用

Require all granted

new example

#add for WWW
Listen 91
<VirtualHost *:91>
DocumentRoot  "D:/IDE/WWW"
ServerName locajavascriptlhost:91
</VirtualHost>

<Directory "D:/IDE/WWW">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

到此这篇关于apache httpd配置多个端口的实现方法的文章就介绍到这了,更多相关apache httpd配置多个端口内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新运维

运维排行榜