nginx 預設是不允許列出整個目錄的,需要配置 nginx 自帶的 ngx_http_autoindex_module 模組實現目錄瀏覽功能 。
location /
autoindex_exact_size off;
預設為on,顯示出檔案的確切大小,單位是bytes。
改為off後,顯示出檔案的大概大小,單位是kb或者mb或者gb
autoindex_localtime on;
預設為off,顯示的檔案時間為gmt時間。
改為on後,顯示的檔案時間為檔案的伺服器時間
備註:發現另外一種方案 實現,使用 docker 簡單除暴 (docker pull filebrowser/filebrowser) 。
refer:
配置 Nginx 的目錄瀏覽功能
nginx 預設是不允許列出整個目錄的,需要配置 nginx 自帶的 ngx http autoindex module 模組實現目錄瀏覽功能 location autoindex exact size off 預設為on,顯示出檔案的確切大小,單位是bytes。改為off後,顯示出檔案的大概大小,...
Nginx開啟目錄瀏覽功能
quote url nginx預設是不允許列出整個目錄的。如需此功能,開啟nginx.conf檔案,在location server 或 http段中加入 autoindex on 另外兩個引數最好也加上去 autoindex exact size off 預設為on,顯示出檔案的確切大小,單位是b...
Nginx開啟目錄瀏覽功能 autoindex
2010年7月19日 wenhui nginx預設是不允許列出整個目錄的。如需此功能,開啟nginx.conf檔案,在location server 或 http段中加入 autoindex on 另外兩個引數最好也加上去 autoindex exact size off 預設為on,顯示出檔案的確...