Apache2のドキュメントルート設定
基本的な設定は完了したので、次にドキュメントルートの設定を行います。
Apache2の設定はRaspberry Pi(Debian系)と違って1ファイルにまとまってます。
vi /etc/httpd/conf/httpd.conf
下記の設定となるように変更(変更部分または重要部分のみ記載)
# ドキュメントルート
DocumentRoot "/var/www/html"
# 最上位の制御
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
# ドキュメントルートの制御
<Directory "/var/www/html">
Options -Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
# アクセス制御ファイル名
AccessFileName .htaccess
# ファイル名を指定しない場合の検索優先順位(index.html)
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
# iconsルートの制御
<Directory "/var/www/icons">
Options -Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>