首頁 > 運維 > Apache > apache配置多個http埠的方法

apache配置多個http埠的方法

王林
發布: 2020-11-03 17:03:21
轉載
4684 人瀏覽過

apache配置多個http埠的方法

方法一:使用httpd-vhosts

(相關建議:apache

進入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檔

設定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

進入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>
 Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
登入後複製

apache不同版本目錄權限設定

1、old使用

Order allow,deny
Allow from all
登入後複製

2、new使用


Require all granted
登入後複製

3、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>
登入後複製

以上是apache配置多個http埠的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:csdn.net
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板