首页 > 系统相关 >nginx做文件下载

nginx做文件下载

时间:2022-11-18 16:03:40浏览次数:37  
标签:文件 sbin autoindex IP server nginx conf 下载


conf/nginx.conf中配置

server {
listen 80;
charset utf-8;
server_name 服务器IP;
root /data/Downloads/;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}

执行sbin/nginx -t 检查配置

执行sbin/nginx -s reload 更新

浏览器输入​​服务器IP​​即可下载,或者wget

nginx做文件下载_服务器


标签:文件,sbin,autoindex,IP,server,nginx,conf,下载
From: https://blog.51cto.com/u_15879559/5868554

相关文章