系统相关
首页 > 系统相关> > Nginx配置资源下载目录

Nginx配置资源下载目录

作者:互联网

1 修改 Nginx 配置文件

vim conf/nginx.conf

2 添加 server
location ~ ^/attach/ {
alias /usr/local/nginx/html/download/;
autoindex on; # 开启目录文件列表
autoindex_exact_size on; # 显示出文件的确切大小,单位是bytes
autoindex_localtime on; # 显示的文件时间为文件的服务器时间
charset utf-8,gbk; # 避免中文乱码
}
注意不能是/root 目录下的文件路径 ,会显示403无权限

标签:文件,autoindex,nginx,Nginx,conf,目录,下载
来源: https://blog.csdn.net/weixin_42690236/article/details/117287890