惜风不起、唯有努力!
nginx部署http文件服务并隐藏内容

nginx部署http文件服务并隐藏内容

 # 在80端口下加一个location并加上路径,这样默认访问80,只会出现html根目录内容,不会显示/data/ftpdata下的内容,必须加上/file才会显示。
 # 如果把alias换成root会找不到路径,404了,具体可以了解下alias和root的区别。
 location /file {
             alias    /data/ftpdata;
             autoindex on;
             autoindex_exact_size off;
             autoindex_localtime on;
        }
# 普通http

location / {
             root    /data/fs;
             autoindex on;
             autoindex_exact_size off;
             autoindex_localtime on;
        }

发表回复

您的电子邮箱地址不会被公开。