1. 程式人生 > 實用技巧 >利用fancyindex美化OpenWrt/LEDE的nginx目錄索引介面

利用fancyindex美化OpenWrt/LEDE的nginx目錄索引介面

nginx開啟目錄索引很簡單,在http{}內新增如下幾行:

autoindex on;
autoindex_exact_size off; #顯示換算後的檔案大小,KB/MB等
autoindex_localtime on;   #時間

預設配置下,nginx的目錄索引是長這樣的

醜不說,字還特別小,這怎麼忍?必應搜尋"nginx 索引美化",第一篇就是關於怎麼編譯Fancyindex這個nginx模組,但是OpenWrt的編譯選項中並沒有這個。繼續搜,發現有用自帶HTTP_ADDITION模組新增自定義樣式的,感覺能行,但是nginx -V後發現發現預設沒有編譯這個模組,而且編譯選項同樣沒有。

首先OpenWrt的原始碼中是不含有nginx原始碼的,編譯時會從官網下載原始碼,官網的原始碼肯定可以新增HTTP_ADDITION模組,但是OpenWrt少了一些模組的選項。我嘗試在OpenWrt的原始碼目錄中找nginx的Makefile,最後在feeds\packages\net\nginx裡找到(如果沒有編譯過應該是沒有這個目錄的),開啟看,檔案內容大概如下

ADDITIONAL_MODULES:=

ifneq ($(BUILD_VARIANT),all-module)
  ifneq ($(CONFIG_NGINX_HTTP_CACHE),y)
    ADDITIONAL_MODULES += --without-http-cache
  endif
  ifneq ($(CONFIG_NGINX_PCRE),y)
    ADDITIONAL_MODULES += --without-pcre
  endif
  #接下來都是類似這樣
else
  CONFIG_NGINX_HEADERS_MORE:=y
  CONFIG_NGINX_HTTP_BROTLI:=y
  CONFIG_NGINX_RTMP_MODULE:=y
  CONFIG_NGINX_TS_MODULE:=y
  CONFIG_NGINX_NAXSI:=y
  CONFIG_NGINX_LUA:=y
  CONFIG_NGINX_DAV:=y
  CONFIG_NGINX_UBUS:=y
  ADDITIONAL_MODULES += --with-http_ssl_module --add-module=$(PKG_BUILD_DIR)/nginx-naxsi/naxsi_src \
    --add-module=$(PKG_BUILD_DIR)/lua-nginx --with-ipv6 --with-http_stub_status_module --with-http_flv_module \
	--with-http_dav_module --add-module=$(PKG_BUILD_DIR)/nginx-dav-ext-module \
	--with-http_auth_request_module --with-http_v2_module --with-http_realip_module \
	--with-http_secure_link_module --with-http_sub_module --add-module=$(PKG_BUILD_DIR)/nginx-headers-more \
	--with-stream --with-stream_ssl_module --with-stream_ssl_preread_module \
	--add-module=$(PKG_BUILD_DIR)/nginx-brotli --add-module=$(PKG_BUILD_DIR)/nginx-rtmp \
	--add-module=$(PKG_BUILD_DIR)/nginx-ts --add-module=$(PKG_BUILD_DIR)/nginx-ubus-module
  config_files += koi-utf koi-win win-utf fastcgi_params uwsgi_params
endif

那麼理論上我在if-else外層加上我需要的編譯選項,編譯出來的nginx就會帶有那些模組,嘗試在endif下面加上一句程式碼

ADDITIONAL_MODULES += --with-http_addition_module \ #HTTP_ADDITION模組,fancyindex依賴這個模組
  --add-module=/home/username/git/ngx-fancyindex #fancyindex模組,從github拉取的原始碼

編譯,再nginx -V

...--with-http_addition_module --add-module=/home/username/git/ngx-fancyindex...

一次通過,舒服
然後安裝主題到/www目錄,配置/etc/nginx/nginx.conf,加上

fancyindex on;
fancyindex_exact_size off;
fancyindex_header "/Nginx-Fancyindex-Theme-dark/header.html";
fancyindex_footer "/Nginx-Fancyindex-Theme-dark/footer.html";

再次開啟索引頁面

效果還不錯,雖然配色有點單調