̃Gg[͂ĂȃubN}[Nɒlj

apache :: 必ずやる httpd.conf の設定



Apache インストール後に `必ず' やる httpd.conf の設定

▼ 拡張子「php」の設定
(追加)    AddType application/x-httpd-php .php

▼ Indexさせない
(修正前)  Options Indexes Includes FollowSymLinks MultiViews
(修正後)  Options -Indexes Includes FollowSymLinks MultiViews

▼ ServerSignature見せない
(修正前)  ServerSignature On
(修正後)  ServerSignature Off

▼ .htaccessを有効にする
(修正前)  AllowOverride None
(修正後)  AllowOverride All

▼ access_logのローテート (※必要であれば、古いログを cron で定期削除)
(修正前)  CustomLog /var/log/apache/access.log combined
(修正後)  CustomLog "| /usr/sbin/rotatelogs /var/log/apache/access_log.%Y%m%d 86400 540" combined

▼ error_logのローテート (※必要であれば、古いログを cron で定期削除)
(修正前)  ErrorLog /var/log/apache/error.log
(修正後)  ErrorLog "| /usr/sbin/rotatelogs /var/log/apache/error_log.%Y%m%d 86400 540"



server/apache/httpd.conf/httpd.conf.txt