网站首页 > 技术教程 正文
基本功能
用户请求以 / 结尾时,列出目录结构
指令集
autoindex
autoindex_exact_size
autoindex_format
autoindex_localtime
语法
语法: autoindex on|off;
默认值: autoindex off;
上下文: http server location
解释: 是否开启此功能
autoindex_exact_size
语法: autoindex_exact_size on|off;
默认值: autoindex_exact_size on;
上下文: http server location
解释: 是否在浏览器中显示文件大小,off为人性化显示
autoindex_format
语法: autoindex_format html|xml|json|jsonp;
默认值: autoindex_format html;
上下文: http server location
解释: 目录结构的返回格式
autoindex_localtime
语法: autoindex_localtime on|off;
默认值: autoindex_localtime off;
上下文: http server location
解释: 时间格式
配置段信息
# 资源路径 /opt/source/download/
# 注意不要出现index.html|htm
server {
listen 80;
server_name ~.*;
location /# 资源路径 /opt/source/download/
# 注意不要出现index.html|htm
server {
listen 80;
server_name ~.*;
location /download/ {
root /opt/source;
# index b.html;
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime off;
}
}
/ {
root /opt/source;
# index b.html;
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime off;
}
}
这样当访问 http://xxx.com/download/路径时 会展示/opt/source/ 下的文件列表
猜你喜欢
- 2024-10-03 06《Nginx 入门教程》Nginx 配置初步(下)
- 2024-10-03 5、Nginx虚拟主机配置(nginx配置虚拟目录)
- 2024-10-03 Nginx内置模块讲解(nginx内置页面)
- 2024-10-03 如何快速部署一个带用户名和密码认证的文件分享网页服务器
- 2024-10-03 Nginx之5金钟罩 - (SSL)(金钟罩平台)
- 2024-10-03 五个案例“熄灭”Nginx漏洞隐患(nginx常见故障)
- 2024-10-03 nginx-3-默认网站和防盗链(nginx默认访问index.html)
- 2024-10-03 应用安全扫描时NGINX的配置方法(nginx防扫描)
你 发表评论:
欢迎- 最近发表
-
- 阿里P8大佬总结的Nacos入门笔记,从安装到进阶小白也能轻松学会
- Linux环境下,Jmeter压力测试的搭建及报错解决方法
- Java 在Word中合并单元格时删除重复值
- 解压缩软件哪个好用?4款大多数人常用的软件~
- Hadoop高可用集群搭建及API调用(hadoop3高可用)
- lombok注解@Data没有toString和getter、setter问题
- Apache Felix介绍(apache fineract)
- Spring Boot官方推荐的Docker镜像编译方式-分层jar包
- Gradle 使用手册(gradle详细教程)
- 字节二面:为什么SpringBoot的 jar可以直接运行?
- 标签列表
-
- 下划线是什么 (87)
- 精美网站 (58)
- qq登录界面 (90)
- nginx 命令 (82)
- nginx .http (73)
- nginx lua (70)
- nginx 重定向 (68)
- Nginx超时 (65)
- nginx 监控 (57)
- odbc (59)
- rar密码破解工具 (62)
- annotation (71)
- 红黑树 (57)
- 智力题 (62)
- php空间申请 (61)
- 按键精灵 注册码 (69)
- 软件测试报告 (59)
- ntcreatefile (64)
- 闪动文字 (56)
- guid (66)
- abap (63)
- mpeg 2 (65)
- column (63)
- dreamweaver教程 (57)
- excel行列转换 (56)
本文暂时没有评论,来添加一个吧(●'◡'●)