apache的主設定檔是/etc/httpd/conf/httpd.conf;Apache伺服器的設定資訊全部儲存在主設定檔httpd.conf中,這個檔案的內容非常多,用wc指令統計一共有1009行,其中大部分是以#開頭的註解行。
[root@justin ~]# wc -l /etc/httpd/conf/httpd.conf 1009 /etc/httpd/conf/httpd.conf [root@justin ~]#
設定檔包含三個部分:
[root@justin ~]# grep '\<Section\>' /etc/httpd/conf/httpd.conf -n 33:### Section 1: Global Environment 245:### Section 2: 'Main' server configuration 973:### Section 3: Virtual Hosts [root@justin ~]#
解析:
1)、Global Environment---全域環境配置,決定Apache伺服器的全域參數
2)、Main server configuration---主服務配置,相當於Apache中的預設Web站點,如果我們的伺服器中只有一個站點,那麼就只需在這裡配置就可以了。
3)、Virtual Hosts---虛擬主機,虛擬主機不能與Main Server主伺服器共存,當啟用了虛擬主機之後,Main Server就不能使用了
以上是apache的主設定檔是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!