Module ngx_http_auth_basic_moduleHTTP基本认证 Example ConfigurationDirectives auth_basicauth_basic_user_file ngx_http_auth_basic_module模块允许限制对资源的访问通过验证用户名和密码使用HTTP基本身份验证协议。 Example Configurationlocation / { auth_basic "closed site"; auth_basic_user_file conf/htpasswd; } Di...

Module ngx_http_limit_req_module Example ConfigurationDirectiveslimit_reqlimit_req_log_levellimit_req_statuslimit_req_zone ngx_http_limit_req_module模块(0.7.21)用来限制每一个定义的key的请求处理速率,尤其是处理的请求来自一个单一的IP地址。限制使用漏桶算法Leaky Bucket。 Example Configurationhttp { limit_req_zone $binary_remote_addr zone=one...

Module ngx_http_limit_conn_module Example ConfigurationDirectiveslimit_connlimit_conn_log_levellimit_conn_statuslimit_conn_zonelimit_zone ngx_http_limit_conn_module模块是用来根据定义的key限制连接数,特别是从一个单一的IP地址的连接数量。并不是所有的连接都被统计。只有当一个连接整个header被读取并且被服务器处理才统计一次。 例如:限制每个ip的连接数以及virtual server的总连接数 http { l...

Module ngx_http_core_moduleDirectives absolute_redirect aio aio_write alias chunked_transfer_encoding client_body_buffer_size client_body_in_file_only client_body_in_single_buffer client_body_temp_path client_body_timeout client_header_buffer_size clie...

Nginx核心功能指令表 Core functionality accept_mutex accept_mutex_delay daemon debug_connection debug_points error_log env events include load_module lock_file master_process multi_accept pcre_jit pid ssl_engine thread_pool timer_resolution use user worker_aio_requests worker_connections worker_cpu_affinity...

Nginx变量字母表 Alphabetical index of variables$ancientbrowser$arg$args$binaryremote_addr (ngx_http_core_module)$binary_remote_addr (ngx_stream_core_module)$body_bytes_sent$bytes_received$bytes_sent (ngx_http_core_module)$bytes_sent (ngx_http_log_module)$bytes_sent (ngx_stream_core_module)$connection (ng...

Nginx指令字母表 Alphabetical index of directivesabsolute_redirectaccept_mutexaccept_mutex_delayaccess_log (ngx_http_log_module)access_log (ngx_stream_log_module)add_after_bodyadd_before_bodyadd_headeraddition_typesaioaio_writealiasallow (ngx_http_access_module)allow (ngx_stream_access_module)ancient_brow...

nginx documentationIntroduction Installing nginxBeginner’s GuideAdmin’s GuideControlling nginxConnection processing methodsSetting up hashesA debugging logLogging to syslogConfiguration file measurement unitsCommand-line parametersnginx for Windows How nginx processes a request Server namesUsing ...

互联网安全架构——常用算法数字摘要对一个消息产生一个固定长度的信息,由单一hash算法计算生成,接受方使用同样的hash算法计算接受到的信息,比较判断消息传递过程中是否发生篡改.数字摘要常用算法 对称加密不作解释 非对称加密RSA算法 明文—-公钥—-> 密文 —-私钥——->明文 加密 解密 对称加密速度较快,非对称加密速度较慢,现流行方式使用对称加密加密主消息,使用非对称加密 加密 对称加密的秘钥。 数字签名签名认证是对非对称加密与数字摘要技术的综合运用,将消息内容的数字摘要使用发送者的私钥加密,将此密文与...

访客地图