我在使用Nginx和autoindex时遇到了麻烦.
即使我把它放在网站主机上,它仍然在扔“403-Forbidden at my”
location /pics {
autoindex on;
}
是我的配置
server {
listen 80;
server_name www.domain.com;
access_log /home/www/log/access.log;
error_log /home/www/log/error.log;
location / {
root /home/www/public/;
index index.html index.PHP;
}
location /pics {
autoindex on;
}
}
我检查了Nginx -v并使用autoindex模块构建.
在这里变得无能为力.
最佳答案
原文链接:https://www.f2er.com/nginx/435709.html