example.com.conf:- nginx配置文件
- 其中
/usr/share/nginx/html/vendor为放置文件的本地路径,也是需要展示文件列表的路径 - 模拟了一个
/api/list/用于查询文件列表json,由于nginx无法解码url参数,所以没法模拟成url参数方式。
index.html: 单Vue文件列表页面,需要放置到/usr/share/nginx/html/vendor下。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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; |