画像ディレクトリ /images/upload で「ディレクトリ禁止エラー」が発生し続けました。
そのディレクトリに autoindex を追加することで、このエラーを取り除くことができます。しかし、そのディレクトリの下にあるものを人々に見られたくありません。
このエラーを削除するにはどうすればよいですか?
Nginxの設定
server
{
listen 80;
server_name www.no-dev.com;
index index.php index.html index.htm;
root /opt/www/no_web;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
#location /images {
# autoindex on;
#}
location ~* \.(css|js)$ {
add_header Last-Modified: $date_gmt;
expires 1y;
access_log off;
}
location ~* \.(jpg|jpeg|gif|png|ico|bmp|swf)$ {
expires max;
access_log off;
}
access_log logs/no-dev.log main;
}