Use of nginx custom variables and built-in predefined variables

Use of nginx custom variables and built-in predefined variables

Overview

Nginx can use variables to simplify configuration and improve configuration flexibility. All variable values ​​can be referenced in this way:

$variable name

There are two types of variables in nginx: custom variables and built-in predefined variables

Built-in variables

statement

You can use the set command (non-unique) to declare variables in tags such as server, http, location, etc. The syntax is as follows

set $variable name variable value

Note that all variables in nginx must start with $.

Visibility

All variables used in the nginx configuration file must be declared, otherwise nginx will fail to start and print related exception logs

An interesting feature of nginx variables is that none of them are globally visible, yet they are not global variables. For example, the following example

location a/
 return 200 $a
}

location b/ {
 set $a hello nginx
 return 200 $a
}

Since the variable is globally visible, nginx will not report an error when it starts. However, the specific value of $a is unknown in the first location, so the returned response result is an empty string.

The visibility rules for variables declared in tags at different levels are as follows:

  • The variables declared in the location tag are visible to this location block.
  • Variables declared in the server tag are visible to the server block and all sub-blocks in the server block.
  • Variables declared in the http tag are visible to the http block and all sub-blocks in the http block.

Built-in predefined variables

Built-in predefined variables are variables that can be used without declaration, usually including the value of a part of the content in an HTTP request or response. The following are some commonly used built-in predefined variables

Variable Name definition
$arg_PARAMETER The value of the parameter named PARAMETER in the GET request.
$args This variable is equal to the parameter in the GET request. For example, foo=123&bar=blahblah; this variable can only be modified
$binary_remote_addr The client address in binary format.
$body_bytes_sent The number of bytes of the transferred page
$content_length The Content-length field in the request header.
$content_type The Content-Type field in the request header.
$cookie_COOKIE The value of the cookie COOKIE.
$document_root The value specified in the root directive for the current request.
$document_uri Same as $uri.
$host The Host header field in the request. If the Host header in the request is not available or empty, the name of the server processing the request (the value of the server_name directive of the server processing the request). The value is lowercase and does not include the port.
$hostname The machine name is the value of the gethostname system call.
$http_HEADER The content in the HTTP request header, HEADER is the content in the HTTP request converted to lowercase, - becomes _ (dash becomes underscore), for example: $http_user_agent (the value of Uaer-Agent);
$sent_http_HEADER The content in the HTTP response header, HEADER is the content in the HTTP response converted to lowercase, - becomes _ (dash becomes underscore), for example: $sent_http_cache_control, $sent_http_content_type…;
$is_args If $args is set, the value is "?", otherwise it is "".
$limit_rate This variable can limit the connection rate.
$nginx_version The currently running nginx version number.
$query_string Same as $args.
$remote_addr The IP address of the client.
$remote_port The client's port.
$remote_user The username that has been authenticated by the Auth Basic Module.
$request_filename The file path of the current connection request, generated by the root or alias directive and the URI request.
$request_body This variable (0.7.58+) contains the main information of the request. It makes sense in locations that use the proxy_pass or fastcgi_pass directives.
$request_body_file The temporary file name of the client request body information.
$request_completion Set to "OK" if the request was successful; set to empty if the request was not completed or was not the last in a series of requests.
$request_method This variable is the action requested by the client, usually GET or POST. In versions 0.8.20 and earlier, this variable is always the action in the main request. If the current request is a subrequest, the action of the current request is not used.
$request_uri This variable is equal to the original URI including some client request parameters. It cannot be modified. See $uri to change or rewrite the URI.
$scheme The protocol used, such as http or https, such as rewrite ^(.+)$ $scheme://example.com$1 redirect;
$server_addr Server address. This value can be determined after completing a system call. If you want to bypass the system call, you must specify the address in listen and use the bind parameter.
$server_name Server name.
$server_port The port number on which the request arrived at the server.
$server_protocol The protocol used in the request, usually HTTP/1.0 or HTTP/1.1.
$uri The current URI in the request (without request parameters, the parameters are in a r g s ) , No same At Browse View Device pass Deliver of args), which , and it can be modified through internal redirection or using the index directive. Do not include the protocol and hostname, e.g. /foo/bar.html

This is the end of this article about the use of nginx custom variables and built-in predefined variables. For more relevant nginx custom variables and built-in predefined variables, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation and isolation of nginx built-in variables for simple interception
  • Share the latest version of nginx built-in variables
  • A brief analysis of the writing and use of variables in the Nginx configuration file
  • Summary of nginx global variables
  • Summary of global variables in Nginx

<<:  MySQL trigger principle and usage example analysis

>>:  Practice of Vue global custom instruction Modal drag

Recommend

Centering the Form in HTML

I once encountered an assignment where I was give...

MySQL Constraints Super Detailed Explanation

Table of contents MySQL Constraint Operations 1. ...

Comparison between Redis and Memcache and how to choose

I've been using redis recently and I find it ...

Understand the principles and applications of JSONP in one article

Table of contents What is JSONP JSONP Principle J...

Detailed explanation of mysql download and installation process

1: Download MySql Official website download addre...

How to migrate local mysql to server database

We can use the scp command of Linux (scp cannot b...

Linux remote control windows system program (three methods)

Sometimes we need to remotely run programs on the...

MySQL View Principle Analysis

Table of contents Updatable Views Performance of ...

Detailed explanation of how to use several timers in CocosCreator

1. setTimeOut Print abc after 3 seconds. Execute ...

Multiple solutions for cross-domain reasons in web development

Table of contents Cross-domain reasons JSONP Ngin...

CSS animation combined with SVG to create energy flow effect

The final effect is as follows: The animation is ...

How to install Elasticsearch7.6 cluster in docker and set password

Table of contents Some basic configuration About ...

Nginx reverse proxy configuration removes prefix

When using nginx as a reverse proxy, you can simp...

MySQL index usage instructions (single-column index and multi-column index)

1. Single column index Choosing which columns to ...