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/;
}

posted @ 2023-03-30 16:59  leiuk  阅读(58)  评论(0编辑  收藏  举报