Apache 2.2およびphp-fpmディレクトリの設定

Apache 2.2およびphp-fpmディレクトリの設定

Apache 2.2とphp-fpmをインストールしました。 httpd.confから:

DocumentRoot "/var/www/local.site/public_html

<Directory />
    AllowOverride None
    Order Deny,Allow
    Deny from all
</Directory>

<Directory "/php5-fcgi/">
       Order Deny,Allow
       Allow from 127.0.0.1
       Allow from ::1
       #Allow from all
</Directory>

<Directory /var/www/local.site/public_html>
       Order Allow,Deny
       Deny from all
</Directory>

*.phpとhtmlファイルの実行を許可しますが、ディレクトリの受信を拒否する方法は何ですか?なぜなら、私は何をしても/php5-fcgi/、*.phpを拒否するか、ディレクトリの読み取りを許可するからです。

ベストアンサー1

おすすめ記事