`

Nginx的一些内置变量

阅读更多
HTTP核心模块支持一些内置变量,变量名与apache里的对应。比如 $http_user_agent,$http_cookie等表示HTTP请求信息的变量。
更多变量:
$args, 请求中的参数;

$content_length, HTTP请求信息里的"Content-Length";

$content_type, 请求信息里的"Content-Type";

$document_root, 针对当前请求的根路径设置值;

$document_uri, 与$uri相同;

$host, 请求信息中的"Host",如果请求中没有Host行,则等于设置的服务器名;

$limit_rate, 对连接速率的限制;

$request_method, 请求的方法,比如"GET"、"POST"等;

$remote_addr, 客户端地址;

$remote_port, 客户端端口号;

$remote_user, 客户端用户名,认证用;

$request_filename, 当前请求的文件路径名

$request_body_file, ??

$request_uri, 请求的URI,带参数;

$query_string, 与$args相同;

$scheme, 所用的协议,比如http或者是https,比如rewrite ^(.+)$ $scheme://example.com$1 redirect;

$server_protocol, 请求的协议版本,"HTTP/1.0"或"HTTP/1.1";

$server_addr, 服务器地址,如果没有用listen指明服务器地址,使用这个变量将发起一次系统调用以取得地址(造成资源浪费);

$server_name, 请求到达的服务器名;

$server_port, 请求到达的服务器端口号;

$uri, 请求的URI,可能和最初的值有不同,比如经过重定向之类的。


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/iinel/archive/2009/07/04/4321383.aspx


nginx系统变量列表来自nginx wiki

The module ngx_http_core_module supports the built-in variables, whose names correspond with the names of variables in Apache.

First of all, these are the variables, which represent the lines of the title of the client request, for example, $http_user_agent, $http_cookie and so forth.

Furthermore, there are other variables:

$arg_PARAMETER, this variable contains the value of the GET request variable PARAMETER if present in the query string

$args, this variable is equal to arguments in the line of request;

$content_length, this variable is equal to line “Content-Length” in the header of request;

$content_type, this variable is equal to line “Content-Type” in the header of request;

$document_root, this variable is equal to the value of directive root for the current request;

$document_uri, the same as $uri;

$host, this variable is equal to line “Host” in the header of request or name of the server, to whom the request arrived, if there is no this line;

$is_args evaluates to “?” if $args is set, “” otherwise.

$limit_rate, the variable allows to limit connection rate;

$query_string, the same as $args;

$request_method, this variable is equal to the method of request, usually this “GET” or “POST”;

$remote_addr, this variable is equal to the address of client;

$remote_port, this variable is equal to the port of client;

$remote_user, this variable is equal to the name of user, authenticated by ngx_http_auth_basic_module;

$request_filename, this variable is equal to path to the file for the current request, formed from directives root or alias and URI request;

$request_body_file, client request body temporary filename;

$request_uri, this variable is equal to the complete initial URI together with the arguments;

$scheme, the HTTP scheme (http, https). Evaluated only on demand, for example:

rewrite ^(.+)$ $scheme://example.com$1 redirect;
$server_protocol, this variable is equal to the protocol of request, usually this “HTTP/1.0″ or “HTTP/1.1″;

$server_addr, the variable is equal to the server address, to whom arrived the request. As a rule, for obtaining the value of this variable is done one system call. In order to avoid system call, it is necessary to indicate addresses in directives listen and to use parameter bind;

$server_name, this variable is equal to the name of the server, to whom arrived the request;

$server_port, this variable is equal to the port of the server, to which the request arrived;

$uri, this variable is equal to current URI in the request, it can differ from initial, for example by internal redirects, or with the use of index it is file with internal redirects.
参考:http://hi.baidu.com/chiron2012/item/6c8d4711a34d449698ce3375
分享到:
评论

相关推荐

    Nginx内置变量列表

    nginx内置变量列表,根据 Nginx 源码文件 ngx_http_variables.c 提取了nginx 的内置变量。

    nginx内置变量

    **Nginx内置变量概述** Nginx是一个高性能的HTTP和反向代理服务器,它具有模块化设计和出色的并发处理能力。在Nginx配置中,内置变量扮演着至关重要的角色,它们允许管理员动态地获取关于请求、客户端、服务器状态...

    Nginx 内置预变量都有哪些?

    Nginx 内置预变量都有哪些?

    nginx 内置变量详解及隔离进行简单的拦截

    1,nginx内置变量 nginx 有很多内置变量可以进行简单的过滤。 $arg_name 请求行中的name参数。 $args 请求行中参数字符串。 $cookie_name 名为name的cookie。 与$uri相同。 $http_name 任意请求头的值;变量名的后...

    nginx自定义变量与内置预定义变量的使用

    内置变量 声明 可以在sever,http,location等标签中使用set命令(非唯一)声明变量,语法如下 set $变量名 变量值 注意nginx中的变量必须都以$开头。 可见性 nginx的配置文件中所有使用的变量都必须是声明过的...

    nginx 内置变量表 Excel版.rar

    经常需要配置Nginx ,其中有许多以 $ 开头的变量,经常需要查阅nginx 所支持的变量。 可能是对 Ngixn资源不熟悉,干脆就直接读源码,分析出支持的变量。 Nginx支持的http变量实现在 ngx_http_variables.c 的 ngx_...

    分享最新版 nginx内置变量 大全

    nginx内置变量 内置变量存放在 ngx_http_core_module 模块中,变量的命名方式和apache 服务器变量是一致的。总而言之,这些变量代表着客户端请求头的内容,例如$http_user_agent, $http_cookie, 等等。下面是nginx...

    nginx实战-基于lua语言

    利用Nginx的内置功能尽可能减少Lua的使用。 3. **错误调试**:使用`ngx.log`记录错误信息,结合Nginx的日志查看和分析。 4. **版本控制**:随着项目发展,确保Lua代码版本控制,便于维护和升级。 通过深入理解...

    nginx-vs2010

    4. **缓存**:Nginx内置缓存功能,能够缓存部分请求的结果,减少对后端服务器的压力。 **二、 ngx_rtmp模块** ngx_rtmp是Nginx的一个扩展模块,专门用于处理实时流媒体协议(RTMP)。它提供了以下功能: 1. **...

    Ruby-ngxruby是嵌入ruby脚本的Nginx模块

    5. **变量与上下文**:ngx_ruby支持Nginx内置变量,如`$request_uri`,同时也可以创建自己的变量。这些变量可以在不同的`ruby`块之间共享,形成一个共享的上下文。 6. **性能优化**:虽然Ruby语言本身较动态,但...

    CentOS安装nginx

    5. **启动 Nginx**: 安装完成后,创建 Nginx 的启动脚本,设置环境变量,并添加启动、停止和重启命令。然后使用 `systemctl start nginx` 或者 `service nginx start` 来启动 Nginx 服务。 6. **配置 Nginx**: 编辑...

    Nginx-1.8.0

    5. **SSL/TLS支持**:Nginx内置了SSL/TLS模块,可以轻松实现HTTPS加密通信,确保数据传输安全。 **二、配置文件与指令** 1. **配置结构**:Nginx的配置文件通常为`nginx.conf`,采用层次化的配置结构,由主配置...

    nginx-windows 支持视频点播 直播服务

    不过,好消息是,Nginx的Windows版本通常已经预编译了一些常用的第三方模块,例如RTMP。 1. **安装Nginx**: - 解压`nginx-1.19.2`压缩包到一个合适的位置,例如`C:\nginx`。 - 将解压后的目录设置为系统环境变量...

    分布式+nginx+day3

    在编写Rewrite规则时,可以使用Nginx内置的全局变量,例如: - `$args`:请求URL中的查询参数。 - `$http_user_agent`:用户代理信息,显示浏览器版本等。 - `$host`:请求的服务器名称。 - `$document_uri`:请求...

    appleguardu#blog#6.适配终端1

    Nginx适配PC或移动设备Nginx通过内置变量$http_user_agent,可以获取到请求客户端的userAgent,就可以用户目前处于移动端还是PC端

    Tengine(Nginx)的使用

    Nginx支持大量内置变量,如$host表示请求主机名,$request_uri包含URL和查询字符串。这些变量可在配置文件中灵活使用,实现动态路由、条件判断等功能。例如,`if ($request_uri ~ "^/admin") {...}`可以匹配管理员...

    Nginx.docx

    日志格式是监控和分析Nginx性能的关键,HTTP请求变量和Nginx内置变量提供了丰富的信息。 在实际应用中,Nginx常被用作静态资源Web服务。`sendfile`指令开启后,配合`tcp_nopush`可以优化网络包传输效率。`tcp_...

Global site tag (gtag.js) - Google Analytics