80.nginx文件存储

发表于 linux 分类,标签:

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


0 篇评论

发表我的评论