Linux下Apache服務器配置

Linux下Apache服務器配置html

相關包:
httpd-2.2.3-29.e15.i386.rpm                 //主程序包
httpd-devel-2.2.3-29.e15.i386.rpm        //開發程序包
httpd-manual-2.2.3-29.e15.i386.rpm     //手冊文檔
system-config-httpd-1.3.3.3-1.e15.noarch.rpm   //配置工具
注:安裝時會出現依賴包問題,可用YUM安裝來解決
   啓用時須要配置防火牆來放行
 
開機自動加載:
chkconfig --level 3 httpd on 
 
配置實例:
例1:部門內搭建一臺WEB服務器,採用的IP地址和端口爲192.168.0.3:80,首頁採用index.html文件。管理員E- mail地址爲root@sales.com,網頁的編碼類型採用GB2312,全部網站資源都存放在/var/www/html目錄下,並將 Apache的根目錄設置爲/etc/httpd目錄。
編輯主配置文件httpd.conf
vim /etc/httpd/conf/httpd.conf    //編輯主配置文件
ServerRoot " /etc/httpd"             //設置Apache的主目錄
Timeout 120                             //設置請求超時
Listen 80                                  //設置監聽端口
ServerAdmin root@sales.com          //設置管理員郵箱
ServerName 192.168.0.3:80           //設置主機或IP
DocumentRoot " /var/www/html"      //設置Apache文檔目錄
DirectoryIndex index.html               //設置主頁文件
AddDefaultCharset GB2312            //設置網站編碼
編輯主頁文件用做測試:
cd /var/www/html
echo "This is web test sample.">>index.html
chmod 705 index.html
從新加載服務:
service httpd restart
 
例2:假設Apache服務器具備192.168.0.2和19.16.0.3兩個地址,而後配置Apache,把多個網站綁定在不一樣的IP地址上,訪問服務器上不一樣的IP地址,就能夠看到不一樣的網站。
(基於IP)
mkdir /var/www/ip1   /var/www/ip2           //建立兩個主目錄
編輯httpd.conf文件:
<Virtualhost 192.168.0.2>                      //設置虛擬主機的IP
   DocumentRoot /var/www/ip1                //設置虛擬主機的主目錄
   DirectoryIndex index.html                    //設置主頁文件
   ServerAdmin root@sales.com               //設置管理員郵箱
   ErrorLog  logs/ip1-error_log                 //設置錯誤日誌的存放位置
   CustomLog  logs/ip1-access_log common       //設置訪問日誌的存放位置
</Virtualhost>
<Virtualhost 192.168.0.3>                      //設置相應的IP
   DocumentRoot /var/www/ip2
   DirectoryIndex index.html
   ServerAdmin root@sales.com
   ErrorLog  logs/ip2-error_log
   CustomLog  logs/ip2-access_log common
</Virtualhost>
 
(基於域名)
mkdir /var/www/smile   /var/www/long         //建立兩個主目錄
編輯httpd.conf文件:
<Virtualhost 192.168.0.3>                         //設置虛擬主機的IP
   DocumentRoot /var/www/smile                //設置虛擬主機的主目錄
   DirectoryIndex index.html                       //設置主頁文件
   ServerName www.smile.com                    //設置虛擬主機徹底域名
   ServerAdmin root@sales.com                  //設置管理員郵箱
   ErrorLog  logs/smile-error_log                 //設置錯誤日誌的存放位置
   CustomLog  logs/smile-access_log common     //設置訪問日誌的存放位置
</Virtualhost>
<Virtualhost 192.168.0.3>
   DocumentRoot /var/www/long
   DirectoryIndex index.html
   ServerName www.smile.com                     //設置虛擬主機徹底域名
   ServerAdmin root@sales.com
   ErrorLog  logs/long-error_log
   CustomLog  logs/long-access_log common
</Virtualhost>
 
(基於端口)
mkdir /var/www/port8080   /var/www/port8090        //建立兩個主目錄
編輯httpd.conf文件:
Listen 8080
Listen 8090
<Virtualhost 192.168.0.3:8080>                            //設置相應的端口
   DocumentRoot /var/www/port8080                     //設置虛擬主機的主目錄
   DirectoryIndex index.html                                  //設置主頁文件
   ServerAdmin root@sales.com                             //設置管理員郵箱
   ErrorLog  logs/port8080-error_log                     //設置錯誤日誌的存放位置
   CustomLog  logs/port8080-access_log common  //設置訪問日誌的存放位置
</Virtualhost>
<Virtualhost 192.168.0.3:8090>                          //設置相應的端口
   DocumentRoot /var/www/port8090
   DirectoryIndex index.html
   ServerAdmin root@sales.com
   ErrorLog  logs/port8090-error_log
   CustomLog  logs/port8090-access_log common
</Virtualhost>
相關文章
相關標籤/搜索