我是nginx的新手。
我需要在我的网络服务器上自动索引目录,包含子目录。 所以,我这样配置我的niginx:
server {
listen 80;
server_name collect.funshion.com;
root /home/html;
access_log /home/nginx/access.log;
#charset koi8-r;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}
但它只适用于根目录/,它让我很困惑......
答案 0 :(得分:2)
因为你的403被禁止了,难道nginx用户对子目录没有足够的权利吗?