Skip to content

Instantly share code, notes, and snippets.

View ZvonimirSun's full-sized avatar
🎯
Focusing

小吵闹 ZvonimirSun

🎯
Focusing
View GitHub Profile
@ZvonimirSun
ZvonimirSun / README.md
Last active February 28, 2026 07:03
vue-autoindex-single

单Vue页面Nginx文件列表展示

说明

  1. example.com.conf:
    • nginx配置文件
    • 其中/usr/share/nginx/html/vendor为放置文件的本地路径,也是需要展示文件列表的路径
    • 模拟了一个/api/list/用于查询文件列表json,由于nginx无法解码url参数,所以没法模拟成url参数方式。
  2. index.html: 单Vue文件列表页面,需要放置到/usr/share/nginx/html/vendor下。
@ZvonimirSun
ZvonimirSun / autoindex.html
Created March 31, 2021 03:20
Nginx AutoIndex
<script>
let website_title = "ISZY IMG HOST";
let datetime_format = "%Y/%m/%d %H:%M";
let show_readme_md = true;
let max_name_length = 50;
let table_max_height = "240px";
let bodylines = [];
let pageSize = 10;
let pageIndex = 1;