💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 基本功能 1. 用户请求以/结尾时,列出目录结构; 2. 最常见的场景就是在公司搭建一些下载文件的平台; ## 常用指令 1. autoindex; 2. autoindex_exact_size; 3. autoindex_format; 4. autoindex_localtime; ## autoindex 语法: ``` autoindex on | off; //默认是不打开的,除非是公司内网,否则不安全 ``` 默认值; ``` autoindex off; ``` 上下文: ``` http | server | location ``` ## autoindex_exact_size 语法: ``` autoindex_exact_size on | off; ``` 默认值; ``` autoindex_exact_size on; //默认显示文件的大小,精确到字节 ``` 上下文: ``` http | server | location ``` ## autoindex_format 语法: ``` autoindex_format html | xml | json | jsonp; ``` 默认值; ``` autoindex_format html; //默认是以HTML格式返回,只有HTML格式才可以下载 ``` 上下文: ``` http | server | location ``` ## autoindex_localtime 语法: ``` autoindex_localtime on | off; ``` 默认值; ``` autoindex_localtime off; //默认时间格式 ``` 上下文: ``` http | server | location ``` ## 示例 ``` location /download { #index a.html; //千万不要写index,否则不生效 autoindex on; autoindex_exact_size off; //off的显示效果更好 autoindex_format html; autoindex_localtime off; } ``` ``` ➜ download ll total 0 -rw-r--r-- 1 zj staff 0B 11 27 21:36 1 -rw-r--r-- 1 zj staff 0B 11 27 21:36 2 -rw-r--r-- 1 zj staff 0B 11 27 21:36 3 ``` 点击即可下载: ![](https://img.kancloud.cn/34/e4/34e42ce5222535d5fa76a2e45ef471b9_852x382.png)