nginx展示目录及美化

Posted outsrkem

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx展示目录及美化相关的知识,希望对你有一定的参考价值。

1.下载nginx

2.下载fancyindex

git clone https://github.com/aperezdc/ngx-fancyindex.git ngx-fancyindex

3.下载主题

git clone https://github.com/lanffy/Nginx-Fancyindex-Theme.git

编译安装

./configure --prefix=/usr/local/nginx --add-module=../ngx-fancyindex/

make && make install

mv /root/Nginx-Fancyindex-Theme /usr/local/nginx/html/

nginx配置

location /download
            include /usr/local/Cellar/nginx/1.12.2_1/html/Nginx-Fancyindex-Theme/fancyindex.conf; # 目录美化配置
            alias /Users/mac-desktop/video/; #指定目录所在路径
            autoindex on; #开启目录浏览
            autoindex_format html; #以html风格将目录展示在浏览器中
            autoindex_exact_size off; #切换为 off 后,以可读的方式显示文件大小,单位为 KB、MB 或者 GB
            autoindex_localtime on; #以服务器的文件时间作为显示的时间
            charset utf-8,gbk; #展示中文文件名
            
        

效果如下

技术图片

或者不使用主题

 location / 
             alias /data/;
             fancyindex on; # 使用fancyindex
             fancyindex_exact_size off; # 不显示精确大小
        

效果如下

技术图片

以上是关于nginx展示目录及美化的主要内容,如果未能解决你的问题,请参考以下文章

利用nginx+fancyindex美化目录索引

利用nginx+fancyindex美化目录索引 #yyds干货盘点#

博客园自动生成目录及页面美化

linux终端设置只显示当前目录及终端美化

vuepress更改根目录地址及nginx转发笔记

vuepress更改根目录地址及nginx转发笔记