温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么在Nginx中添加ngx-fancyindex模块

发布时间:2021-03-17 17:26:28 来源:亿速云 阅读:355 作者:Leah 栏目:服务器

怎么在Nginx中添加ngx-fancyindex模块?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

安装ngx-fancyindex

第一步

查看已安装的 Nginx 版本与模块信息:

nginx -V

输出信息类似于:

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

cd /tmp/nginx-1.8.0 #进入源码目录 
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --user=nginx --group=nginx --add-module=../ngx-fancyindex-0.4.2
make  #编译

特别注意:

  1. ./configure后面的配置要对应第一步的输出信息,防止不必要的麻烦,–add-module=../ngx-fancyindex-0.4.2 这里根据你下载解压后的 ngx-fancyindex 目录名来。

  2. 只需要 make,不需要 install.

第四步

重命名旧的 nginx 文件:

mv /usr/local/nginx /usr/local/nginx.bak

复制重新编译的nginx文件到nginx原来安装目录下:

cp ./objs/nginx /usr/local/nginx/sbin/

重新启动 nginx 服务:

service nginx restart

配置ngx-fancyindex

修改nginx配置文件

location /path/ #指定~/path目录开启自动列目录
{
 alias /alliot/path/; #虚拟目录/alliot/path/开启自动列目录
 root /path/;  #实际目录/path/开启自动列目录 与alias二选一
 fancyindex on;  #开启nginx目录浏览功能 
 fancyindex_exact_size off; #文件大小从KB开始显示 
 fancyindex_localtime on; #显示文件修改时间为服务器本地时间 
 fancyindex_footer "footer.html"; #设置footer为当前目录下的footer.html
 fancyindex_ignore "footer.html"; #设置不列出当前目录下的footer.html
}

上面 alias 与 root 的区别在于, alias 指定的是当前目录,而 root 指定的是根目录,一般情况下,建议在 “location /” 中通过root命令来配置根目录。

重载配置

执行

nginx -s reload

看完上述内容,你们掌握怎么在Nginx中添加ngx-fancyindex模块的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI