apache?httpd配置多個端口的實現(xiàn)方法
方法一:使用httpd-vhosts
進(jìn)入apache配置目錄,如/usr/local/apache/conf/
打開httpd.conf
配置多個監(jiān)聽窗口,81,82
ServerName localhost:81 # Listen 80 Listen 81 Listen 82
找到#Include conf/extra/httpd-vhosts.conf,去掉#號,解除注釋
進(jìn)入/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
進(jìn)入apache配置目錄,如/usr/local/apache/conf/
打開httpd.conf
配置多個監(jiān)聽窗口,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不同版本 目錄權(quán)限設(shè)置
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 localhost:91 </VirtualHost> <Directory "D:/IDE/WWW"> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory>
到此這篇關(guān)于apache httpd配置多個端口的實現(xiàn)方法的文章就介紹到這了,更多相關(guān)apache httpd配置多個端口內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- apache基于端口創(chuàng)建虛擬主機(jī)的示例
- Apache實現(xiàn)多端口多主機(jī)名配置
- Apache 解決80端口占用問題
- 詳解Apache配置多個監(jiān)聽端口和不同的網(wǎng)站目錄
- 解決安裝apache時端口號被占用的問題
- 80端口被占用導(dǎo)致Apache啟動失敗怎么解決
- 80端口被占用 Apache啟動失敗的解決方法
- 80端口被system占用導(dǎo)致Apache無法啟動的解決方法
- Apache添加多端口及實現(xiàn)單ip多端口映射的方法
- 給Apache虛擬主機(jī)增加端口的方法
- 修改wamp的apache默認(rèn)端口80為8088以及www目錄
相關(guān)文章
CentOS7 LNMP+phpmyadmin環(huán)境搭建 第二篇LNMP環(huán)境搭建教程
這篇文章主要為大家詳細(xì)介紹了CentOS7 LNMP+phpmyadmin環(huán)境搭建,第二篇LNMP環(huán)境搭建教程,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-07-07CentOS 6.1 環(huán)境中部署nginx、php(包括fastcgi)、虛擬主機(jī)配置
CentOS 6.1 環(huán)境中部署nginx、php(包括fastcgi)、虛擬主機(jī)配置,需要的朋友可以參考下2012-08-08linux(ubuntu)用戶連續(xù)N次輸入錯誤密碼進(jìn)行登陸時自動鎖定X分鐘
這篇文章主要介紹了linux(ubuntu)用戶連續(xù)N次輸入錯誤密碼進(jìn)行登陸時,自動鎖定X分鐘,需要的朋友可以參考下2019-09-09CentOS7中MariaDB修改datadir后無法啟動的解決方法
這篇文章主要給大家介紹的是在CentOS 7系統(tǒng)中,MariaDB修改datadir后無法啟動的解決方法,文中給出了詳細(xì)解決方法,相信會對大家的理解很有幫助,有需要的朋友們下面來一起看看吧。2016-10-10