为了安全起见,Nginx默认是不允许列出整个目录的,即当访问一个不包含首页的目录时会返回 403 错误,当我们需要将服务器某一目录列出索引以便下载,我们可以使用 autoindex 来实现,但是 autoindex 模块生成的索引非常简陋,我们可以使用 ngx-fancyindex 代替 autoindex 实现索引目录美化。
本文为已安装 Nginx 环境下的操作。
安装ngx-fancyindex
第一步
查看已安装的 Nginx 版本与模块信息:
输出信息类似于:
nginx version: nginx/1.8.0
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC)
TLS SNI support enabled
configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --user=nginx --group=nginx
第二步
下载对应版本的 Nginx 源码包: http://nginx.org/download/
下载最新版本的 ngx-fancyindex 源码包: https://github.com/aperezdc/ngx-fancyindex/releases
上传至服务器并解压,这里我们上传到/tmp目录。
第三步
编译 Nginx
特别注意:
第四步
重命名旧的 nginx 文件:
复制重新编译的nginx文件到nginx原来安装目录下:
重新启动 nginx 服务:
配置ngx-fancyindex
修改nginx配置文件
上面 alias 与 root 的区别在于, alias 指定的是当前目录,而 root 指定的是根目录,一般情况下,建议在 “location /” 中通过root命令来配置根目录。
更多配置见 https://github.com/aperezdc/ngx-fancyindex
重载配置
执行
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持VEVB武林网。
新闻热点
疑难解答