Nginx - HTTP Configuration, Module Variables
The HTTP Core module introduces a large set of variables that you can use within the value of directives. Be careful though, as only a handful of directives accept variables in the definition of their value. If you insert a variable in the value of a directive that does not accept variables, no error is reported; instead the variable name appears as raw text.
There are three different kinds of variables that you will come across. The first set represents the values transmitted in the headers of the client request. The second set corresponds to the headers of the response sent to the client. Finally, the third set comprises variables that are completely generated by Nginx.
Request Headers
Nginx lets you access the client request headers under the form of variables that you will be able to employ later on in the configuration:
| Variable | Description |
| $http_host | Value of the Host HTTP header, a string indicating the hostname that the client is trying to reach. |
| $http_user_agent | Value of the User-Agent HTTP header, a string indicating the web browser of the client. |
| $http_referer | Value of the Referer HTTP header, a string indicating the URL of the previous page from which the client comes. |
| $http_via | Value of the Via HTTP header, which informs us about possible proxies used by the client. |
| $http_x_forwarded_for | Value of the X-Forwarded-For HTTP header, which shows the actual IP address of the client if the client is behind a proxy. |
| $http_cookie | Value of the Cookie HTTP header, which contains the cookie data sent by the client. |
| $http_... | Additional headers sent by the client can be retrieved using $http_ followed by the header name in lowercase and with dashes (-) replaced by underscores (_). |
Response headers
In a similar fashion, you are allowed to access the HTTP headers of the response that was sent to the client. These variables are not available at all times — they will only carry a value after the response is sent, for instance, at the time of writing messages in the logs.
| Variable | Description |
| $sent_http_content_type | Value of the Content-Type HTTP header, indicating the MIME type of the resource being transmitted. |
| $sent_http_content_length | Value of the Content-Length HTTP header informing the client of the response body length. |
| $sent_http_location | Value of the Location HTTP header, which indicates that the location of the desired resource is different than the one specified in the original request. |
| $sent_http_last_modified | Value of the Last-Modified HTTP header corresponding to the modification date of the requested resource. |
| $sent_http_connection | Value of the Connection HTTP header, defining whether the connection will be kept alive or closed. |
| $sent_http_keep_alive | Value of the Keep-Alive HTTP header that defines the amount of time a connection will be kept alive. |
| $sent_http_transfer_encoding | Value of the Transfer-Encoding HTTP header, giving information about the response body encoding method (such as compress, gzip). |
| $sent_http_cache_control | Value of the Cache-Control HTTP header, telling us whether the client browser should cache the resource or not. |
| $sent_http_... | Additional headers sent to the client can be retrieved using $sent_http_ followed by the header name, in lowercase and with dashes (-) replaced by underscores (_). |
Nginx Generated
Apart from the HTTP headers, Nginx provides a large amount of variables concerning the request, the way it was and will be handled, as well as settings in use with the current configuration.
| Variable | Description |
| $arg_XXX | Allows you to access the query string (GET parameters), where XXX is the name of the parameter you want to utilize. |
| $args | All of the arguments of the query string combined together. |
| $binary_remote_addr | IP address of the client as binary data (4 bytes). |
| $body_bytes_sent | Amount of bytes sent in the body of the response. |
| $connection_requests | Amount of requests already served by the current connection. |
| $content_length | Equates to the Content-Length HTTP header. |
| $content_type | Equates to the Content-Type HTTP header. |
| $cookie_XXX | Allows you to access cookie data where XXX is the name of the parameter you want to utilize. |
| $document_root | Returns the value of the root directive for the current request. |
| $document_uri | Returns the current URI of the request. It may differ from the original request URI if internal redirects were performed. It is identical to the $uri variable. |
| $host | This variable equates to the Host HTTP header of the request. Nginx itself gives this variable a value for cases where the Host header is not provided in the original request. |
| $hostname | Returns the system hostname of the server computer |
| $https | Set to on for HTTPS connections, empty otherwise. |
| $is_args | If the $args variable is defined, $is_args equates to ?. If $args is empty, $is_args is empty as well. You may use this variable for constructing an URI that optionally comes with a query string, such as index.php$is_args$args. If there is any query string argument in the request, $is_args is set to ?, making this a valid URI. |
| $limit_rate |
Returns the per-connection transfer rate limit, as defined by the limit_rate directive. You are allowed to edit this variable by using set (directive from the Rewrite Module): set $limit_rate 128k; |
| $nginx_version | Returns the version of Nginx you are running. |
| $pid | Returns the Nginx process identifier. |
| $query_string | Identical to $args. |
| $remote_addr | Returns the IP address of the client. |
| $remote_port | Returns the port of the client socket. |
| $remote_user | Returns the client username if they used authentication. |
| $realpath_root | Returns the document root in the client request, with symbolic links resolved into the actual path. |
| $request_body | Returns the body of the client request, or - if the body is empty. |
| $request_body_file | If the request body was saved (see the client_body_in_file_only directive) this variable indicates the path of the temporary file. |
| $request_completion | Returns OK if the request is completed, an empty string otherwise. |
| $request_filename | Returns the full filename served in the current request. |
| $request_method | Indicates the HTTP method used in the request, such as GET or POST. |
| $request_uri | Corresponds to the original URI of the request, remains unmodified all along the process (unlike $document_uri/$uri). |
| $scheme | Returns either http or https, depending on the request. |
| $server_addr | Returns the IP address of the server. Be aware as each use of the variable requires a system call, which could potentially affect overall performance in the case of high-traffic setups. |
| $server_name | Indicates the value of the server_name directive that was used while processing the request. |
| $server_port | Indicates the port of the server socket that received the request data. |
| $server_protocol | Returns the protocol and version, usually HTTP/1.0 or HTTP/1.1. |
|
$tcpinfo_rtt, |
If your operating system supports the TCP_INFO socket option, these variables will be populated with information on the |
|
$time_iso8601, |
Provides the current time respectively in ISO 8601 and local formats for use with the access_log directive. |
| $uri | Identical to $document_uri. |
Nginx - HTTP Configuration, Module Variables的更多相关文章
- Nginx - HTTP Configuration, Module Directives
Socket and Host Configuration This set of directives will allow you to configure your virtual hosts. ...
- Nginx之旅系列 - Nginx的configuration
题记:Nginx之旅系列是用来记录Nginx从使用到源码学习的点点滴滴,分享学习Nginx的快乐 Nginx 首页: http://nginx.org/ Nginx的configuration 今天对 ...
- - configuration.module has an unknown property 'loader' 问题解决
错误提示: Invalid configuration object. Webpack has been initialised using a configuration object that d ...
- Nginx - HTTP Configuration, the Location Block
Nginx offers you the possibility to fine-tune your configuration down to three levels — at the proto ...
- nginx install lua module
#install luajit #http://luajit.org/download.html .tar.gz cd LuaJIT- make install PREFIX=/home/allen. ...
- Test,Nginx Hello World Module
ngx_addon_name=ngx_http_mytest_module HTTP_MODULES="$HTTP_MODULES ngx_http_mytest_module" ...
- Nginx - Configuration File Syntax
Configuration Directives The Nginx configuration file can be described as a list of directives organ ...
- Nginx - Rewrite Module
Initially, the purpose of this module (as the name suggests) is to perform URL rewriting. This mecha ...
- nginx tcp负载均衡 (Module ngx_stream_upstream_module)
Example ConfigurationDirectives upstream server zone state hash least_conn ...
随机推荐
- CodeForces 732B Cormen — The Best Friend Of a Man (贪心)
题意:给定n和k表示,狗要在任意连续两天散步次数要至少为k,然后就是n个数,表示每天的时间,让你增加最少次数使得这个条件成立. 析:贪心,策略是从开始到最后暴力,每次和前面一个相比,如果相加不够k,那 ...
- PHP 中运用 elasticsearch
PHP扩展安装 1. 环境要求:PHP_VERSION >= 5.3.9,composer工具 2. 在E盘新建文件夹命名为elastic,,拷贝composer.phar到 E:/e ...
- 新手一步一步OpenCV+Win7+Visual Studio 2013环境配置
地点:湖南大学软件大楼211 时间:2013.12.19 昨天导师布置了个任务,要求是找出用相机拍出同一移动场景下的两张照片,计算机能根据其中的差异计算场景移动的距离和旋转角度.据说以前很牛逼的师兄完 ...
- 时间的函数,sleep,clock,gettickcount,QueryPerformanceCounter(转)
介绍 我 们在衡量一个函数运行时间,或者判断一个算法的时间效率,或者在程序中我们需要一个定时器,定时执行一个特定的操作,比如在多媒体中,比如在游戏中等,都 会用到时间函数.还比如我们通过记录函数或者算 ...
- R语言聚类方法&主要软件包-K-means
主要4中软件包 stas:主要包含基本统计函数. cluster:用于聚类分析. fpc:含聚类算法函数(固定聚类.线性回归聚类等). mclust:处理高斯分布混合模型,通过EM算法实现聚类.分类及 ...
- C字符串压缩算法
#include <iostream> #include <stdlib.h> //#include <algorithm> using namespace std ...
- 【转】windows上安装gvim
gvim安装包下载: 简明安装说明:1.安装 gvim 安装包中的程序.2.安装 第三方软件安装包中的程序,将 dll 文件放入 system32目录.3.将 bin 目录加入 PATH 环境 ...
- POJ 3281 Dining 网络流最大流
B - DiningTime Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.hust.edu.cn/vjudge/contest/view.ac ...
- 探讨一个新的两个进程间的通信和编程模型 (Windows)
本文探讨一个新的Windows上的两个UI进程间的通信和编程模型. 开门见山,下面是这个通信模型的梗概图: 这个模型的设计目标描述如下: (1)发送数据接口:RpcSend, RpcPost RpcS ...
- MAC JAVA 环境变量那些事
1,查看 JAVA 的版本号 akdeMacBook-Pro:bin AK$ java -version java version "1.6.0_65" Java(TM) SE R ...