Nginx 开启目录浏览
默认配置下Nginx 是不允许目录浏览的。
编辑 /etc/nginx/conf.d/default.conf
找到 location / { ……}
添加参数,并去除原有index 的定义配置。
location / {
autoindex on;
autoindex_localtime on;
}
默认配置下Nginx 是不允许目录浏览的。
编辑 /etc/nginx/conf.d/default.conf
找到 location / { ……}
添加参数,并去除原有index 的定义配置。
location / {
autoindex on;
autoindex_localtime on;
}