io565 发表于 2013-11-8 20:49:17

nginx索引目录问题

开启了索引目录之后(指定了一个新网站和wwwroot下的新目录)会有风险吗,比如说跨站风险
该目录的文件权限该如何设置?

licess 发表于 2013-11-9 09:03:49

跨站应该不会,不过没解析的文件可能会被直接下载

hsxxzn 发表于 2014-4-21 10:56:40

回复 1# 的帖子

lnmpa 环境下是怎么实现开启索引目录的?
因为我做的内网服务器,所以没办法给出地址。
其中有一个目录是中文名称,有几千个文件,大都中文名,供内网用户方便下载使用!

修改/usr/local/apache/conf/httpd.conf 为

DocumentRoot "/home/wwwroot/default"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
    Options ExecCGI FollowSymLinks Includes IncludesNOEXEC Indexes -MultiViews SymLinksIfOwnerMatch
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

修改/usr/local/nginx/conf/nginx.conf 为
listen       80;
server_name www.lnmp.org;
index index.html index.htm index.php;
root/home/wwwroot/default;
    autoindex on;
    autoindex_exact_size off;
    autoindex_localtime on;

以上修改都没有作用,到底该怎么修改?

[ 本帖最后由 hsxxzn 于 2014-4-21 11:04 编辑 ]

licess 发表于 2014-4-21 16:43:52

在nginx上开auotindex就行了https://www.vpser.net/build/nginx-autoindex.html

apache不需要动

中文乱码的话看https://www.vpser.net/manage/lnmp-nginx-chinese-filename-directory.html
页: [1]
查看完整版本: nginx索引目录问题