Nginx服务之配置文件

纸上得来终觉浅,绝知此事要躬行。

Nginx服务之配置文件-每日运维
Nginx服务之配置文件

1. 基本特性

Nginx 是一个优秀的 Web、代理、缓存服务器。

基本特性

  • 低内存消耗
  • 模块化设计,支持模块的动态装卸载(DSO机制)
  • 高可靠性,使用master/worker工作模式
  • 支持热部署,不停机更新配置文件和程序版本等
  • 支持事件驱动、AIO、mmap等机制

基本功能

  • 静态资源的Web服务器,能缓存打开的文件描述符
  • 支持http、smtp、pop3协议的反向代理、缓存、负载均衡
  • 支持FastCGI(fpm)、uWSGI(Python)等
  • 模块化、过滤器zip、SSI及图像大小调整等
  • 支持SSL安全协议

扩展功能

  • 基于名称和IP的虚拟主机
  • 支持平滑升级
  • 支持路径别名
  • 支持URL重写(rewrite)
  • 支持keepalive高可用
  • 支持基于 IP 及用户的访问控制
  • 支持速率限制,支持并发数限制
  • 定制访问日志 ,支持使用日志缓冲区提高日志存储性能

基本架构

  • 一个master进程,生成一个或多个worker
  • 基于事件驱动机制,如epoll、kqueue等
  • 支持sendfile、sendfile64的响应机制
  • 支持异步IO模型(AIO)
  • 支持内存映射机制(mmap)
  • 并发收到TCP的套接字限制,最多5万左右,代理的时候更少

防护墙

  • 四层防护墙:只针对于流量、IP做过滤
  • 七层防火墙:防止爬虫、XSS攻击、请求过滤

2. 安装方法

通过命令行工具安装 Nginx 工具

  • (1) 编译环境准备
[[email protected]~]# yum install -y gcc
[[email protected]~]# yum install -y make

[[email protected]~]# yum groupinstall -y "Development tools"
[[email protected]~]# yum install -y pcre-devel
[[email protected]~]# yum install -y openssl-develzlib-devel

[[email protected]~]# useradd -g nginx -r nginx
  • (2) 解压安装
[[email protected]~]# tar xf nginx-1.8.0.tar.gz

[[email protected]]# ./configure 
    --prefix=/usr/local/nginx 
    --conf-path=/etc/nginx/nginx.conf 
    --user=nginx 
    --group=nginx 
    --error-log-path=/data/log/nginx/error.log 
    --http-log-path=/data/log/nginx/access.log 
    --pid-path=/var/run/nginx/nginx.pid 
    --lock-path=/var/lock/nginx.lock 
    --with-http_ssl_module 
    --with-http_stub_status_module 
    --with-http_gzip_static_module 
    --with-debug

[[email protected]]# make && make install
# 生成环境编译配置
# 为了方便程序迁移可以将配置文件指定到安装目录下或对/etc做定期备份
[[email protected]~]# mkdir -pv /var/tmp/nginx/{client,proxy,fastcgi}

[[email protected]]# ./configure 
    --prefix=/usr/local/nginx 
    --conf-path=/etc/nginx/nginx.conf 
    --user=nginx 
    --group=nginx 
    --error-log-path=/var/log/nginx/error.log 
    --http-log-path=/var/log/nginx/access.log 
    --pid-path=/var/run/nginx/nginx.pid 
    --lock-path=/var/lock/nginx.lock 
    --with-http_ssl_module 
    --with-http_stub_status_module 
    --with-http_gzip_static_module 
    --with-http_flv_module 
    --with-http_mp4_module 
    --http-client-body-temp-path=/var/tmp/nginx/client 
    --http-proxy-temp-path=/var/tmp/nginx/proxy 
    --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi

[[email protected]]# make && make install
  • (3) 启动服务并检测端口是否启用
[[email protected]~]# /usr/local/nginx/sbin/nginx

[[email protected]~]# ss -tnl

3. 模块介绍

Nginx是由内核模块组成的,内核的设计非常微小和简洁,完成非常简单的工作。仅通过查找配置文件将客户端请求映射到一个location block中,而这个location中所配置的每个指令将会启动不同的模块去完成相应的工作。

Nginx的模块直接被编译进Nginx,因此属于静态编译的方式。启动Nginx后,Nginx的模块被自动加载,不像在Apache一样。首先将模块编译为一个个的so文件,然后在配置文件中指定是否进行加载。在解析配置文件时,Nginx的每一个模块都有可能去处理某个请求,但是同一个处理请求只能由一个模块来完成。
模块分类(层次)

  • 核心模块:http模块、event模块、mail模块
  • 基础模块:access模块、FastCGI模块、proxy模块、rewrite模块
  • 第三方模块:upstream模块、request hash模块、notice模块

模块分类(功能)

  • 处理器模块(Handlers):可以直接处理请求并进行内容输出和修改报文信息
  • 过滤器模块(Filters):主要对其他处理器模块输出的内容进行修改,最后输出
  • 代理类模块(Proxies):主要与后端服务器的交互等操作,如负载均衡和代理

请求处理过程
Nginx服务之配置文件-每日运维
基本的 Web 服务器请求步骤
Nginx服务之配置文件-每日运维
第三方模块

  • 下面列出的NGINX和NGINX+第三方模块,创建并维护都是NGINX的社区成员,参见官方链接
模块模块功能表述仓库地址
Accept Language ModuleAccept-Language header parsergiom/nginx_accept_language_module
AFCGIAsynchronous/multiplexing FastCGI for NGINXrsms/afcgi
Akamai G2ORestricts access to content to Akamai edge servers using G2O headerskaltura/nginx_mod_akamai_g2o
Array VarAdd support for array variables to NGINX config filesopenresty/array-var-nginx-module
Audio Track for HTTP Live StreamingGenerate audio track for HTTP Live Streaming (HLS) streams on the flyflavioribeiro/nginx-audio-track-for-hls-module
HTTP Digest AuthenticationHTTP Digest Authenticationatomx/nginx-http-auth-digest
PAM AuthenticationHTTP Basic Authentication using PAMsto/ngx_http_auth_pam_module
Request AuthenticationAllows authorization based on subrequest resultngx_http_auth_request_module
Auto LibReuse pre-compiled/installed versions of OpenSSL, PCRE and Zlibsimpl/ngx_auto_lib
AWS AuthGenerate security headers for GET requests to Amazon S3anomalizer/ngx_aws_auth
BacktraceA NGINX module to dump backtrace case a worker process exits abnormallyalibaba/nginx-backtrace
BrotliServes dynamically or statically compressed responses with brotligoogle/ngx_brotli
Cache PurgeAdds ability to purge content from FastCGI, proxy, and uWSGI cachesFRiCKLE/ngx_cache_purge
Circle GifGenerates simple circle images with colors/size specified in the URLevanmiller/nginx_circle_gif
ClojureA module for embedding Clojure, Java, and Groovy programsnginx-clojure/nginx-clojure
ConcatConcatenates files in a given contextalibaba/nginx-http-concat
Upstream Consistent HashSelect backend based on Consistent hash ringreplay/ngx_http_consistent_hash
Development KitAn extension to the core functionality of NGINXsimpl/ngx_devel_kit
Upstream Domain ResolveAn asynchronous domain name resolve module for NGINX upstreamwdaike/ngx_upstream_jdomain/
HTTP DrizzleMake NGINX talk directly to MySQL or Drizzle database serversopenresty/drizzle-nginx-module
Dynamic etagsNGINX module for etags on dynamic contentkali/nginx-dynamic-etags
Dynamic UpstreamUpdate upstreams’ config by restful interfaceyzprofile/ngx_http_dyups_module
HTTP EchoProvides familiar shell-style commands to NGINX HTTP serversopenresty/echo-nginx-module
Stream EchoProvides familiar shell-style commands to NGINX stream serversopenresty/stream-echo-nginx-module
Encrypted SessionEncrypt NGINX variables for light-weight session-based authenticationopenresty/encrypted-session-nginx-module
Enhanced MemcachedRepackaging of the standard memcached module to add featuresbpaquet/ngx_http_enhanced_memcached_module
EvalA module for evaluating memcached or proxy response into variablevkholodkov/nginx-eval-module
Eval (OpenResty’s fork)Captures arbitrary subrequests’ responses into custom NGINX variablesopenresty/nginx-eval-module
ExecuteCommands remotely and return resultslimithit/NginxExecute
EY BalancerProvides a request queue for limiting concurrent requestsezmobius/nginx-ey-balancer
Upstream Fair BalancerDistributes incoming requests to least-busy serversgnosek/nginx-upstream-fair
Fancy IndexLike the built-in autoindex module, but fancieraperezdc/ngx-fancyindex
Foot FilterImplements a body filter that adds a given string to the page footeralibaba/nginx-http-footer-filter
FastCGI Functional Handlerc/c++ service function handler which built for NGINX fastcgiTaymindis/fcgi-function
Footer If FilterApplies a footer if a response meets a specified conditionflygoast/ngx_http_footer_if_filter/
Form InputParses HTTP POST request bodies and saves results to NGINX variablescalio/form-input-nginx-module
GeoIP2City and country code lookups via the MaxMind GeoIP2 APIleev/ngx_http_geoip2_module
GridFSNGINX module for serving files from MongoDB’s GridFSmdirolf/nginx-gridfs
GroovyA module for embedding Clojure, Java, and Groovy programsnginx-clojure/nginx-clojure
Headers MoreSet and clear input and output headers… more than “add”!openresty/headers-more-nginx-module
HTTP HealthcheckHealth check HTTP servers inside an upstreamcep21/healthcheck_nginx_upstreams
HTTP AccountingRealtime netflow and status code monitoringLax/ngx_http_accounting_module
HTTP IconvConverts character encodingscalio/iconv-nginx-module
Internal RedirectA NGINX module for internal redirectionflygoast/ngx_http_internal_redirect/
IP2LocationIdentifies the country name/code of an IP addresschrislim2888/ip2location-nginx
JavaA module for embedding Clojure, Java, and Groovy programsnginx-clojure/nginx-clojure
JavaScriptEmbedding SpiderMonkey, a full port of Perl module, and morepeter-leonov/ngx_http_js_module#readme
Upstream Ketama CHashProvides upstream load distribution by hashing a configurable variableflygoast/ngx_http_upstream_ketama_chash/releases/
LDAP AuthLDAP module which supports authentication against multiple LDAP serverskvspb/nginx-auth-ldap
Limit Upload RateLimit the transmission rate of request body from a clientcfsego/limit_upload_rate
Limit Upstream ConnectionLimits the maximum connections to each server in a upstreamcfsego/nginx-limit-upstream/
Log IfLog the requests only when given conditions are metcfsego/ngx_log_if/
Log ZMQLog the requests via ZeroMQalticelabs/nginx-log-zmq
Lower Upper CaseProvides upper/lowercase string functions in NGINX config filesreplay/ngx_http_lower_upper_case
HTTP LuaEmbed the power of Lua into NGINX HTTP servers (OpenResty Official)openresty/lua-nginx-module
Stream LuaEmbed the power of Lua into NGINX TCP servers (OpenResty Official)openresty/stream-lua-nginx-module
LuafileEmbed the power of Lua into NGINXalacner/nginx_lua_module
HTTP Lua UpstreamMake Nginx http upstream configurations scriptable by Luaopenresty/lua-upstream-nginx-module
MD5 FilterReturns the MD5 sum of content that would’ve otherwise been servedkainswor/nginx_md5_filter
HTTP MemcExtension of the standard memcached moduleopenresty/memc-nginx-module
ModSecurityWeb application firewallspiderlabs/modsecurity/
MogilefsImplements a MogileFS clientDownload
MongoUpstream module for direct communication with MongoDBsimpl/ngx_mongo
MP4 Streaming LiteSeeks time within H.264/MP4 files if a “start” parameter is in the URLDownload
mrubyEmbedded mruby script language for nginx-modulematsumotory/ngx_mruby
NchanPubsub server for Websockets, Long-Poll, EventSource etc.slact/nchan
NaxsiWeb Application Firewall for NGINXnbs-system/naxsi
nginx-ip-blockerAn efficient shared memory IP blocking system for nginx.tmthrgd/nginx-ip-blocker
NoticeServe static file to POST requestskr/nginx-notice
OCSP proxyOCSP processing module designed for response cachingkyprizel/nginx_ocsp_proxy-module
OpenSSL VersionOpenSSL minimum version constraints in configurationapcera/nginx-openssl-version
Owner MatchProvides a simple file owner-based access controlDownload
PageSpeedRewrites webpages and associated assets to reduce latency and bandwidthpagespeed/ngx_pagespeed
PHPEmbedded php script language for nginx-modulerryqszq4/ngx_php
PHP Session ParserExtract values that are stored in a serialized PHP sessionreplay/ngx_http_php_session
PHP-Memache Standard HashLoad balancer that imitates the PHP-Memcache standard hash’s behaviourreplay/ngx_http_php_memcache_standard_balancer
POST authenticationAuthentication and authorization via POST request and PAMveruu/ngx_form_auth
PostgresAllows NGINX to communicate directly with PostgreSQL databaseDownload
PubcookieAdds Pubcookie-based cross-site authentication method to NGINXivandeex/pubcookie
HTTP Push StreamTurns NGINX into an adept stream HTTP Push serverwandenberg/nginx-push-stream-module
HTTP rDNSMakes a reverse DNS lookup and provides control of incoming hostnameflant/nginx-http-rdns
RDS CSVHelps ngx_drizzle, ngx_postgres, and others emit Comma-Separated Valuesopenresty/rds-csv-nginx-module
RDS JSONHelps ngx_drizzle, ngx_postgres, and others emit JSON dataopenresty/rds-json-nginx-module
HTTP RedisRedis support moduleDownload
HTTP Redis2HTTP Upstream module for the full Redis 2.0 protocolopenresty/redis2-nginx-module
HTTP TarantoolHTTP Upstream module for communicate with Tarantool DBtarantool/nginx_upstream_module
Replace FilterPerforms regular expression substitutions on response bodiesopenresty/replace-filter-nginx-module
RobooHTTP Robot Mitigator that integrates easily with NGINXyuri-gushin/Roboo/downloads
RRD GraphThis module provides an HTTP interface to RRDtool’s graphing facilitiesevanmiller/mod_rrd_graph
RTMPRTMP protocol support. Live streaming and video on demandarut/nginx-rtmp-module
RTMPT moduleProxy RTMP packages using stadard HTTP requestskwojtek/nginx-rtmpt-proxy-module
SassCompiles SASS files in NGINX before sending the responsemneudert/sass-nginx-module
Secure DownloadCreate expiring linksreplay/ngx_http_secure_download
Selective Cache PurgeA cache purge module that allows GLOB expressions like .jpg or /testwandenberg/nginx-selective-cache-purge-module
Set CConvConversion between Simplified and Traditional Chinese at rewrite phaseliseen/set-cconv-nginx-module
Set HashSet a variable to hash functions, including MD5, SHA1 and Murmurhash 2simpl/ngx_http_set_hash
Set LangSet a variable to indicate the language based on a variety of sourcessimpl/ngx_http_set_lang/downloads
HTTP Set MiscVarious set_xxx directives added to NGINX’s rewrite moduleopenresty/set-misc-nginx-module
sFlowOperational performance monitoring with standard sFlow protocolDownload
Shibboleth AuthPerform authorization based on subrequest to Shibboleth FastCGI appnginx-shib/nginx-http-shibboleth
SliceNGINX module for serving a file in slices (reverse byte-range)alibaba/nginx-http-slice
SlowFS CacheAdds ability to cache static filesDownload
SmallLightDynamic Image Transformation Module For NGINXcubicdaiya/ngx_small_light
SOCKSSOCKS5 proxy module for NGINXdannote/socks-nginx-module
Sorted QuerystringExpose a variable with the parameters ordered to be used as a cache_keywandenberg/nginx-sorted-querystring-module
SphinxNGINX upstream module for Sphinx 2.xreeteshranjan/sphinx2-nginx-module
SPNEGOSupport for SPNEGO/gssapi in NGINXstnoonan/spnego-http-auth-nginx-module
HTTP SRCacheTransparent subrequest-based caching layout for NGINX locationsopenresty/srcache-nginx-module
SSSD infoRetrieves and exposes additional user attributes from SSSDveruu/ngx_sssd_info
Static etagsGenerates etags for static contentmikewest/nginx-static-etags
StatsdAdds the ability for NGINX to interacting with Statsdzebrafishlabs/nginx-statsd
Sticky upstreamAdds an upstream server persistance using cookiesnginx-goodies/nginx-sticky-module-ng/get/master.tar.gz
STSA stream traffic status modulevozlt/nginx-module-sts
SubrangeSplit one big HTTP/Range request to multiple subrange requesetsQihoo360/ngx_http_subrange_module
SubstitutionsPerforms regular expression and string substitutions on response bodiesyaoweibin/ngx_http_substitutions_filter_module
SummarizerAn upstream module for Summarizer 1.0reeteshranjan/summarizer-nginx-module
SupervisordCommunicate with supervisord and manage backends on-demandDownload
Sync UpstreamsSyncing upstreams from etcd or consul, needn’t reload nginx(HTTP Module)weibocom/nginx-upsync-module
Sync UpstreamsSyncing upstreams from etcd or consul, needn’t reload nginx(TCP Module)xiaokai-wang/nginx-stream-upsync-module
SysGuardA module to protect the system against too high loadvozlt/nginx-module-sysguard
TCP ProxyTCP proxy with NGINX, includes health check and status monitoryaoweibin/nginx_tcp_proxy_module
TestCookie moduleSimple robot (DDoS) mitigation modulekyprizel/testcookie-nginx-module
Types FilterChanges the Content-Type output header on specified conditionsflygoast/ngx_http_types_filter
UnZipserve file directly from the archivesyouzee/nginx-unzip-module
UploadHandles file uploads using multipart/form-data encoding (RFC 1867)vkholodkov/nginx-upload-module
NGINX Upload Progress ModuleTracks and reports upload progressmasterzen/nginx-upload-progress-module
UrlA module to convert uri to user-defined encodingvozlt/nginx-module-url
User AgentA more powerful module than the native BrowserModulealibaba/nginx-http-user-agent
Video Thumb ExtractorNGINX module to extract thumbs from a video filewandenberg/nginx-video-thumbextractor-module
VODRepackage MP4 files for streaming in HLS, HDS, MSS and DASHkaltura/nginx-vod-module
VTSA virtual host and upstream traffic status modulevozlt/nginx-module-vts
XSSNative support for cross-site scripting (XSS)openresty/xss-nginx-module
ZipAssemble ZIP archives on the flyevanmiller/mod_zip

4. 配置简介

  • 配置文件基本结构
main

http {
    upstream {
        ...
    }

    server {
        listen IP:PORT;
        location /URL {
            if ... {
                ...
            }
            root "/path/to/somewhere";
            ...
        }
    }

    server {
        ...
    }
}

mail {
    ...
}
  • 配置语法格式
    • 配置指令要以分号结尾
    • directive value1 [value2...];
  • 支持使用变量
    • 模块内置变量
    • 自定义变量set var_name value

5. 官方模块

模块相关参考链接:扣扣的小木屋 > 使用 Nginx 实现 TCP 反向代理 > 使用 Nginx 实现 UDP 反向代理 > 使用 Nginx 自带 Realip 模块获取用户真实 IP 地址

模块名称提供什么功能或服务模块常用指令
ngx_http_access_module该模块允许或禁止某些客户端地址才能访问特点服务allow、deny
ngx_http_auth_basic_module该模块允许通过使用HTTP Basic Authentication协议验证用户名和密码来限制对资源的访问;访问也可以通过密码、子请求的结果或JWT来限制(由其他模块提供)auth_basic、auth_basic_user_file
ngx_http_auth_jwt_module该模块通过使用指定的键验证提供的JSON Web令牌(JWT)来实现客户端授权;该模块可用于OpenID Connect身份验证-
ngx_http_auth_request_module该模块根据子请求的结果实现客户端授权;如果子请求返回2xx响应代码便允许访问,如果它返回401或403便拒绝访问相应的错误代码,子请求返回的任何其他响应代码被视为错误;此模块不是默认构建的,应使用--with-http_auth_request_module配置参数启用;模块可以与其他访问模块组合,但需要通过allocate指令auth_request、auth_request_set
ngx_http_addition_module该模块是一个在响应之前和之后添加文本的过滤器;此模块不是默认构建的,应使用--with-http_addition_module配置参数启用-
ngx_http_autoindex_module该模块处理以斜杠字符(/)结尾的请求并生成目录列表;通常,当ngx_http_index_module模块找不到索引文件时,会将请求传递给ngx_http_autoindex_module模块autoindex、autoindex_exact_size、autoindex_format、autoindex_localtime
ngx_http_browser_module该模块创建的变量的值取决于User-Agent请求头字段的值;$modern_browser、$ancient_browser和$msie变量ancient_browser、ancient_browser_value、modern_browser、modern_browser_value
ngx_http_dav_module该模块是为通过WebDAV协议自动管理文件而设计的;该模块处理HTTP和WebDAV的请求方法PUT、DELETE、MKCOL、COPY和MOVE;此模块不是默认构建的,应使用--with-http_dav_module配置参数启用-
ngx_http_empty_gif_module该模块会发出单像素透明GIF-
ngx_http_f4f_module该模块为Adobe HTTP动态流(HDS)提供服务器端支持-
ngx_http_flv_module该模块为Flash视频(FLV)文件提供虚拟流服务器端支持;此模块不是默认构建的,应使用--with-http_flv_module配置参数启用-
ngx_http_geo_module该模块根据客户端IP地址创建具有值的变量-
ngx_http_geoip_module该模块使用预编译的MaxMind数据库创建具有取决于客户端IP地址的值的变量;此模块需要MaxMind GeoIP库;此模块不是默认构建的,应使用--with-http_geoip_module配置参数启用-
ngx_http_gzip_module该模块是一个使用gzip方法压缩响应的过滤器;这通常有助于将传输数据的大小减少一半或更多gzip、gzip_buffers、gzip_comp_level、gzip_disable、gzip_min_length、gzip_http_version、gzip_proxied、gzip_types、gzip_vary
ngx_http_gzip_static_module该模块允许发送带有.gz文件扩展名的预压缩文件而不是常规文件;此模块不是默认构建的,应使用--with-http_gzip_static_module配置参数启用gzip_static
ngx_http_gunzip_module该模块是一个过滤器,用于对不支持gzip编码方法的客户端使用Content-Encoding:gzip解压缩响应;当希望存储压缩的数据以节省空间并降低I/O成本时,该模块将是有用的;此模块不是默认构建的,应使用--with-http_gunzip_module配置参数启用gunzip、gunzip_buffers
ngx_http_headers_module该模块允许将Expires和Cache-Control报头字段和任意字段添加到响应标头add_header、expires
ngx_http_image_filter_module该模块是一个以JPEG、GIF、PNG和WebP格式转换图像的过滤器;此模块使用libgd库,建议使用库的最新可用版本;此模块不是默认构建的,应使用--with-http_image_filter_module配置参数启用image_filter、image_filter_buffer、image_filter_interlace、image_filter_jpeg_quality
ngx_http_index_module该模块处理以斜杠字符/结尾的请求;这些请求也可以由ngx_http_autoindex_module和ngx_http_random_index_module模块处理index、ngx_http_js_module
ngx_http_limit_conn_module该模块用于限制每个定义的键的请求连接数,特别是来自单个IP地址的连接数,并非所有连接都被计数;只有当连接具有由服务器处理的请求并且整个请求头已经被读取时,才对连接进行计数limit_conn、limit_conn_log_level、limit_conn_status、limit_conn_zone
ngx_http_limit_req_module该模块用于限制每个定义的键的请求处理速率,特别是来自单个IP地址的请求的处理速率;使用leaky bucket方法进行限制limit_req、limit_req_log_level、limit_req_status、limit_req_zone
ngx_http_map_module该模块创建变量的值取决于其他变量的值-
ngx_http_memcached_module该模块从memcached服务器获取响应;键在$memcached_key变量中设置;应该通过nginx外部的方式预先将响应放在memcached中-
ngx_http_mp4_module该模块为MP4文件提供伪流式服务器端支持;此类文件通常具有.mp4、.m4v或.m4a文件扩展名-
ngx_http_perl_module该模块用于在Perl中实现位置和变量处理程序,并将Perl调用插入到SSI中;此模块不是默认构建的,应使用--with-http_perl_module配置参数启用
ngx_http_random_index_module该模块处理以斜杠字符(/)结尾的请求,并选择目录中的随机文件作为索引文件; 模块在ngx_http_index_module模块之前处理;此模块不是默认构建的,应使用--with-http_random_index_module配置参数启用random_index
ngx_http_realip_module该模块用于将客户端地址和可选端口更改为在指定的头字段中发送的端口;此模块不是默认构建的,应使用--with-http_realip_module配置参数启用real_ip_header、real_ip_recursive
ngx_http_referer_module该模块用于阻止对Referer头字段中具有无效值的请求对站点的访问;应该记住,使用适当的Referer字段值来构造请求是非常容易的,因此该模块的预期目的不是彻底阻止这种请求,而是阻止普通浏览器发送的请求的大量流动;还应该考虑到,即使对于有效的请求,常规浏览器也可能不发送Referer字段。referer_hash_bucket_size、referer_hash_max_size、valid_referers
ngx_http_rewrite_module该模块用于使用PCRE正则表达式更改请求URI,返回重定向并有条件地选择配置break、if、return、rewrite、rewrite_log、set、uninitialized_variable_warn
ngx_http_scgi_module该模块允许将请求传递到SCGI服务器-
ngx_http_secure_link_module该模块用于检查请求的链接的真实性,保护资源免受未经授权的访问,并限制链接的生存期;此模块不是默认构建的,应使用--with-http_secure_link_module配置参数启用-
ngx_http_session_log_module该模块启用日志记录会话(即多个HTTP请求的聚合),而不是单个HTTP请求;此模块可作为商业版本的一部分-
ngx_http_slice_module该模块是一个将请求拆分为子请求的过滤器,每个返回一定范围的响应,过滤器提供更有效的缓存大响应;此模块不是默认构建的,应使用--with-http_slice_module配置参数启用-
ngx_http_split_clients_module该模块创建适合A/B测试的变量,也称为拆分测试split_clients
ngx_http_ssi_module该模块是一个过滤器,用于处理通过它的响应中的SSI(服务器端包含)命令;目前,支持的SSI命令列表不完整
ngx_http_ssl_module该模块为HTTPS提供必要的支持;此模块不是默认构建的,应使用--with-http_ssl_module配置参数启用ssl、ssl_buffer_size、ssl_certificate、ssl_certificate_key、ssl_ciphers、ssl_client_certificate、ssl_password_file
ngx_http_status_module该模块提供对基本状态信息的访问;此模块不是默认构建的,应使用--with-http_stub_status_module配置参数启用stub_status
ngx_http_sub_module该模块是一个过滤器,通过用另一个替换一个指定的字符串来修改响应;此模块不是默认构建的,应使用--with-http_sub_module配置参数启用sub_filter、sub_filter_last_modified、sub_filter_once
ngx_http_userid_module该模块设置适合客户端标识的cookie;接收和设置的Cookie可以使用嵌入式变量$uid_got和$uid_set记录;此模块与Apache的mod_uid模块兼容userid、userid_domain、userid_expires、userid_name、userid_path
ngx_http_v2_module该模块提供对HTTP/2的支持,并取代ngx_http_spdy_module模块;此模块不是默认构建的,应使用--with-http_v2_module配置参数启用-
ngx_http_xslt_module该模块是一个过滤器,它使用一个或多个XSLT样式表转换XML响应;此模块需要libxml2和libxslt库;此模块不是默认构建的,应使用--with-http_xslt_module配置参数启用xml_entities、xslt_last_modified、xslt_param
ngx_http_charset_module该模块添加指定的字符集的Content-Type响应标头字段charset、charset_map、charset_types
ngx_http_hls_module该模块提供HTTP流媒体直播(HLS)服务器端支持MP4和MOV媒体文件;这些文件通常有.mp4、.m4v、.m4a、.mov或.qt文件名扩展hls
ngx_http_js_module该模块用于实现nginScript程序的处理js_include、js_content
ngx_http_keyval_module该模块创建变量值从键值对管理的 APIkeyval、keyval_zone
ngx_http_log_module该模块用于定义请求日志格式access_log、log_format、open_log_file_cache
ngx_http_memcached_module该模块是用于获得从memcached服务器响应;关键是在$memcached_key变量中设置memcached_bind、memcached_buffer_size
ngx_http_mirror_module利用mirror模块,业务可以将线上实时访问流量拷贝至其他环境,基于这些流量可以做版本发布前的预先验证,进行流量放大后的压测等等mirror
ngx_http_upstream_module该模块设置负载均衡upstream、server
ngx_http_uwsgi_module该模块提供对Python动态内容的支持uwsgi_pass、uwsgi_cache
ngx_stream_core_module该模块支持TCP协议/UDP协议的代理和负载均衡,即四层模型的支持server、listen