nginx http功能模块 | 模块说明 |
---|---|
nginx_http_core_module | 包括一些核心的http参数配置,对应nginx的配置为http区块部分 |
nginx_http_access_module | 访问控制模块,用来控制网站用户对nginx的访问 |
nginx_http_gzip_module | 压缩模块,对nginx返回的数据压缩,属于性能优化模块 |
nginx_http_fastcgi_module | fastcgi模块和动态应用相关的模块,例如php |
nginx_http_proxy_module | proxy代理模块 |
nginx_http_upstream_module | 负载均衡模块,可以实现网站的负载均衡功能及节点的健康检查 |
nginx_http_rewrite_module | url地址重写模块 |
nginx_http_limit_conn_module | 限制用户并发连接数及请求数模块 |
nginx_http_limit_req_module | 根据定义的key限制nginx请求过程的速率 |
nginx_http_log_module | 访问日志模块,以指定格式记录nginx客户访问日志等信息 |
nginx_http_auth_basic_module | web认证模块,设置web用户通过账号、密码访问nginx |
nginx_http_ssl_module | ssl模块,用于加密http连接,如https |
nginx_http_stub_status_module | 记录nginx基本访问状态信息的模块 |
网友评论