1. 程式人生 > 實用技巧 >win10 編譯 nginx 新增 fancy-index模組

win10 編譯 nginx 新增 fancy-index模組

所需工具及庫

連結:https://pan.baidu.com/s/1FTmU7cNQVfPzRccpgfGRBQ

提取碼:sg5v

開啟目錄索引

# 新增美化外掛後的引數
location / {
    alias	                /data/wwwroot/download/;
    autoindex               on;
    autoindex_exact_size    off;
    autoindex_localtime     on;
    charset                 utf-8; # 如果中文有亂碼,可配置為:gbk,utf-8
    
    fancyindex              on; # 啟用外掛
    fancyindex_localtime    on; # 使用本地時間
    fancyindex_exact_size   off; # 是否使用精確的大小,on顯示位元組,off顯示如 M 這種

    fancyindex_footer       "/fancy-theme/footer.html"; # 主題頁尾檔案
    fancyindex_header       "/fancy-theme/header.html"; # 主題頭部檔案
    fancyindex_ignore       "example.html"; # 忽略顯示的檔名稱
    fancyindex_ignore       "fancy-theme";  # 忽略顯示的目錄
    fancyindex_name_length  255;
    fancyindex_time_format  "%Y-%m-%d %H:%M";
}

檔案下載:

nginx-1.18.0(win) 已新增fancy-index模組

連結:https://pan.baidu.com/s/1e2EPVLa-nth9rTfQwPTdlw

提取碼:6lzm

參考資料:

https://blog.csdn.net/zhuquanfu/article/details/101055011?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3.control

https://blog.csdn.net/longji/article/details/52369618

主題美化

https://blog.xinac.cn/archives/nginx-fancy-index.html