节点模块表示网络中的基本元素(包括主机、交换机和控制器),十分关键。 其中,每个主机默认在一个单独的名字空间中,交换机和控制器都在 root 名字空间中。
描述链路相关的接口和连接。包括 Intf 类、Link 类、TCIntf 类和 TCLink 类。
这个模块可以为Http webDAV 增加 PUT, DELETE, MKCOL, COPY 和 MOVE 等方法。 这个模块在默认编译的情况下不是被包含的,你需要在编译时指定如下参数: ./configure --with-http_dav_module 配置范例: location / { root /data/www; client_body_temp_path /d
这个模块能够获取Nginx自上次启动以来的工作状态 此模块非核心模块,需要在编译的时候手动添加编译参数 --with-http_stub_status_module __配置说明__ location /nginx_status { : # copied from http://blog.kovyrin.net/2006/04/29/monitoring-nginx-with-rrdtool/
This module adds responses of other locations before and after the current location's response. It is implemented as an output filter, the contents of the main request and subrequests to other locatio
此模块处理服务器端包含文件(ssi)的处理. 列表中的命令当前并未完全支持. __配置示例__ location / { : ssi on; } Directives [#ssi ssi] [#ssi_silent_errors ssi_silent_errors] [#ssi_types ssi_types] [#ssi_value_length ssi_value_length] ss
This module makes it possible to change URI using regular expressions, and to redirect and select configuration depending on variables. 该模块允许使用正则表达式改变URI,并且根据变量来转向以及选择配置。 If the directives of this mod
This module makes it possible to transfer requests to another server. 此模块专伺将请求导向其它服务. It is an HTTP/1.0 proxy without the ability for keep-alive requests yet. 这是种 HTTP/1.0 版本的无请求保持代理. (As a result, ba
ngx_http_log_module 实例 log_format gzip '$remote_addr - $remote_user [$time_local] ' : '"$request" $status $bytes_sent ' : '"$http_referer" "$http_user_agent" "$gzip_ratio"'; access_log /spool/log
This module allows you to limit the number of requests for a given session, or as a special case, with one address. Restriction done using leaky bucket. Example Configuration http { limit_req_zone
摘要 This module makes it possible to block access to the site with the incorrect values of line "Referer" in the request header. Keep in mind that it is easy to spoof this header; therefore, the purpos
语法: index file [file...] 默认值: index index.html 作用域: http, server, location 该指令用来指定用来做默认文档的文件名,可以在文件名处使用变量。 如果您指定了多个文件,那么将按照您指定的顺序逐个查找。 可以在列表末尾加上一个绝对路径名的文件。 示例: index index.$geo.html index.0.html i
本模板可以设置HTTP报文的头标。 __示例__ : expires 24h; : expires 0; : expires -1; : expires epoch; : add_header Cache-Control private; 指令 [#add_header add_header] [#expires expires] 增加头标 语法: add_
这个模块支持在线实时压缩输出数据流 __使用范例__ : gzip on; : gzip_min_length 1000; : gzip_proxied expired no-cache no-store private auth; : gzip_types text/plain application/xml; 内置变量 $gzip_ratio
摘要 This module creates variables, whose values depend on the IP-address of the client. Example configuration: geo $geo { default 0; 127.0.0.1/32 2; 192.168.1.0/24 1; 10.1.0.0