apache httpd配置多個埠

2021-08-04 23:14:21 字數 1753 閱讀 4221

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

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"

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"

進入apache配置目錄,如/usr/local/apache/conf/

開啟httpd.conf

配置多個監聽視窗,81,82

listen   81

listen 82

並在檔案的最後增加:

documentroot /home/public/web/host1

servername localhost:81

options indexes followsymlinks

allowoverride all

order allow,deny

allow from all

documentroot /home/public/web/host2

servername localhost:82

options indexes followsymlinks

allowoverride all

order allow,deny

allow from all

old使用

order allow,deny

allow from all

new使用

require all granted
new example

#add for www

listen 91

documentroot "d:/ide/www"

servername localhost:91

options indexes followsymlinks

allowoverride none

require all granted

Apache Httpd服務配置

2016 8 16 09 35 19 hury 參考 1 安裝包 vc9執行庫 x86 x64.zip 預設服務名 apache2.4,預設配置檔案 conf httpd.conf net stop apache2.4或者 windows服務管理 或者 httpd.exe k start n mys...

Apache httpd 實現 重寫

rewriteengine on 開啟重寫功能 errordocument 404 error 404.html 指定404狀態 檔案 errordocument 403 error 403.html 指定403狀態 檔案 rewritecond d.d.d d rewritecond 是重寫規則,...

Apache Httpd 日誌分割

最近發現 打不開,登入系統檢查下,發現放置 檔案的瓷盤已被佔滿,可用空間為0kb,進去發現客戶apache伺服器的錯誤日誌error.log非常的大,造成瓷盤被爆滿。第一步 停止apache服務的所有程序,刪除 apache2 logs 目錄下的 error.log access.log檔案 第二步...