nginx文件存储
yum install -y httpd-tools
htpasswd -cb /etc/nginx/htpasswd mynginx 123456
auth_basic "Please enter the user name and password"; #这里是验证时的提示信息
auth_basic_user_file /etc/nginx/htpasswd;
location / {
    if ($request_filename ~* ^.*?\.(txt|pdf|doc|xls)$){
    add_header Content-Disposition: 'attachment;';
}
    auth_basic "Please enter the user name and password";
    auth_basic_user_file /etc/nginx/htpasswd;
    charset utf-8,gbk;
    autoindex on;
    autoindex_exact_size off;
    autoindex_format html;
    autoindex_localtime on;
    limit_rate_after 10m;
    root /data/;
}
 
                    
                
 
                
            
         浙公网安备 33010602011771号
浙公网安备 33010602011771号