Apache配置檔小介紹

  1. ServerRoot "/etc/httpd"
    主要安裝目錄,此目錄下有 log 檔或模組等等。
  2. Listen 80
    監聽 port 。
  3. User apache
    Group apache
    此方式是為了保護系統,避免 apache 使用 root 角色執行,而已此群組執行,若有漏洞,不會因為 apache 而導致系統淪陷。
  4. ServerName www.example.com:80
    系統域名或IP,用來提供 apache 辨識本機域名資訊。
  5. DocumentRoot "/var/www/html"
    apache 放置網頁檔案實際目錄,User 用瀏覽器觀看 URL 時,會從此目錄找尋檔案。
  6. DirectoryIndex index.html
    apache 預設目錄,預設檔名為 index.html。
  7.  TypesConfig /etc/mime.types
    副檔名辨識檔,依照此檔回應使用者正確的檔案類型。

留言

熱門文章