用户认证访问
模块ngx_http_auth_basic_module 允许使用“HTTP基本认证”协议验证用户名和密码来限制对资源的访问。

location ~(.*)\.avi$ {
         auth_basic  "closed site";
         auth_basic_user_file conf/users;
}

httpd-tools

yum install httpd

htpasswd -c -d /usr/local/users zhangyang

nginx访问状态监控

location /basic_status {
    stub_status on;
}