Module ngx_http_proxy_module
The ngx_http_proxy_module
module allows to pass requests to another server.
Example Configuration
location / { proxy_pass http://localhost:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; }
Directives
syntax: | proxy_bind |
default: | — |
context: | http , server , location |
This directive appeared in version 0.8.22.
Forces outgoing connections to a proxied server to originate from the specified local IP address
. Value of the parameter can contain variables (1.3.12). The special value off
(1.3.12) cancels the effect of the proxy_bind
directive inherited from the previous configuration level, allowing the system to auto-assign local address.
syntax: | proxy_buffer_size |
default: | proxy_buffer_size 4k|8k; |
context: | http , server , location |
Sets size
of the buffer used for reading the first part of a response received from the proxied server. This part usually contains a small response header. By default, the buffer size is equal to the size of one buffer set by the directive. It can be made smaller however.
syntax: | proxy_buffering |
default: | proxy_buffering on; |
context: | http , server , location |
Enables or disables buffering of responses from the proxied server.
When buffering is enabled, nginx receives a response from the proxied server as soon as possible, saving it into buffers set by the and directives. If the whole response does not fit into memory, part of it can be saved to a on disk. Writes to temporary files are controlled by the and directives.
When buffering is disabled, a response is passed to a client synchronously, immediately as it is received. nginx will not try to read the whole response from the proxied server. The maximum size of the data that nginx can receive from the server at a time is set by the directive.
Buffering can also be enabled or disabled by passing “yes
” or “no
” in the “X-Accel-Buffering” response header field. This ability can be disabled using the proxy_ignore_headers directive.
syntax: | proxy_buffers |
default: | proxy_buffers 8 4k|8k; |
context: | http , server , location |
Sets the number
and size
of buffers used for reading a response from the proxied server, for a single connection. By default, the buffer size is equal to one memory page. This is either 4K or 8K, depending on a platform.
syntax: | proxy_busy_buffers_size |
default: | proxy_busy_buffers_size 8k|16k; |
context: | http , server , location |
When of responses from the proxied server is enabled, limits the total size
of buffers that can be busy sending a response to the client while the response is not yet fully read. In the mean time, the rest of the buffers can be used for reading a response and, if needed, buffering part of a response to a temporary file. By default, size
is limited by two buffers set by the and directives.
syntax: | proxy_cache |
default: | proxy_cache off; |
context: | http , server , location |
Defines a shared memory zone used for caching. The same zone can be used in several places. The off
parameter disables caching inherited from the previous configuration level.
syntax: | proxy_cache_bypass |
default: | — |
context: | http , server , location |
Defines conditions under which the response will not be taken from a cache. If at least one value of the string parameters is not empty and is not equal to “0” then the response will not be taken from the cache:
proxy_cache_bypass $cookie_nocache $arg_nocache$arg_comment; proxy_cache_bypass $http_pragma $http_authorization;
Can be used along with the directive.
syntax: | proxy_cache_key |
default: | proxy_cache_key $scheme$proxy_host$request_uri; |
context: | http , server , location |
Defines a key for caching, for example
proxy_cache_key "$host$request_uri $cookie_user";
By default, the directive’s value is close to the string
proxy_cache_key $scheme$proxy_host$uri$is_args$args;
syntax: | proxy_cache_lock |
default: | proxy_cache_lock off; |
context: | http , server , location |
This directive appeared in version 1.1.12.
When enabled, only one request at a time will be allowed to populate a new cache element identified according to the directive by passing a request to a proxied server. Other requests of the same cache element will either wait for a response to appear in the cache, or the cache lock for this element to be released, up to the time set by the directive.
syntax: | proxy_cache_lock_timeout |
default: | proxy_cache_lock_timeout 5s; |
context: | http , server , location |
This directive appeared in version 1.1.12.
Sets a timeout for .
syntax: | proxy_cache_methods |
default: | proxy_cache_methods GET HEAD; |
context: | http , server , location |
This directive appeared in version 0.7.59.
If the client request method is listed in this directive then the response will be cached. “GET
” and “HEAD
” methods are always added to the list, though it is recommended to specify them explicitly. See also the directive.
syntax: | proxy_cache_min_uses |
default: | proxy_cache_min_uses 1; |
context: | http , server , location |
Sets the number
of requests after which the response will be cached.
syntax: | proxy_cache_path |
default: | — |
context: | http |
Sets path and other parameters of a cache. Cache data are stored in files. Both the key and file name in a cache are a result of applying the MD5 function to the proxied URL. The levels
parameter defines hierarchy levels of a cache. For example, in the following configuration
proxy_cache_path /data/nginx/cache levels=1:2 keys_zone=one:10m;
file names in a cache will look like this:
/data/nginx/cache/c/29/b7f54b2df7773722d382f4809d65029c
A cached response is first written to a temporary file, then a file is renamed. Starting from version 0.8.9 temporary files and the cache can be put on different file systems but be aware that in this case a file is copied across two file systems instead of the cheap rename operation. It is thus recommended that for any given location both cache and a directory holding temporary files set by the directive are put on the same file system.
In addition, all active keys and information about data are stored in a shared memory zone, whose name
and size
are configured by the keys_zone
parameter. Cached data that are not accessed during the time specified by the inactive
parameter get removed from the cache regardless of their freshness. By default, inactive
is set to 10 minutes.
The special process “cache manager” monitors the maximum cache size set by the max_size
parameter; when this size is exceeded it removes the least recently used data.
A minute after the start the special process “cache loader” is activated that loads information about previously cached data stored on file system into a cache zone. A load is done in iterations. During one iteration no more than loader_files
items are loaded (by default, 100). Besides, the duration of one iteration is limited by the loader_threshold
parameter (by default, 200 milliseconds). A pause is made between iterations, configured by the loader_sleep
parameter (by default, 50 milliseconds).
syntax: | proxy_cache_use_stale |
default: | proxy_cache_use_stale off; |
context: | http , server , location |
If an error occurs while working with the proxied server it is possible to use a stale cached response. This directives determines in which cases it is permitted. The directive’s parameters match those of the directive.
Additionally, the updating
parameter permits to use a stale cached response if it is currently being updated. This allows to minimize the number of accesses to proxied servers when updating cached data.
To minimize the number of accesses to proxied servers when populating a new cache element, the directive can be used.
syntax: | proxy_cache_valid [ |
default: | — |
context: | http , server , location |
Sets caching time for different response codes. For example, the following directives
proxy_cache_valid 200 302 10m; proxy_cache_valid 404 1m;
set 10 minutes of caching for responses with codes 200 and 302, and 1 minute for responses with code 404.
If only caching time
is specified
proxy_cache_valid 5m;
then only 200, 301, and 302 responses are cached.
In addition, it can be specified to cache any responses using the any
parameter:
proxy_cache_valid 200 302 10m; proxy_cache_valid 301 1h; proxy_cache_valid any 1m;
Parameters of caching can also be set directly in the response header. This has a higher precedence than setting of caching time using the directive. The “X-Accel-Expires” header field sets caching time of a response in seconds. The value 0 disables to cache a response. If a value starts with the prefix @
, it sets an absolute time in seconds since Epoch, up to which the response may be cached. If header does not include the “X-Accel-Expires” field, parameters of caching may be set in the header fields “Expires” or “Cache-Control”. If a header includes the “Set-Cookie” field, such a response will not be cached. Processing of one or more of these response header fields can be disabled using the directive.
syntax: | proxy_connect_timeout |
default: | proxy_connect_timeout 60s; |
context: | http , server , location |
Defines a timeout for establishing a connection with the proxied server. It should be noted that this timeout cannot usually exceed 75 seconds.
syntax: | proxy_cookie_domain proxy_cookie_domain |
default: | proxy_cookie_domain off; |
context: | http , server , location |
This directive appeared in version 1.1.15.
Sets a text that should be changed in the domain
attribute of the “Set-Cookie” header fields of a proxied server response. Suppose a proxied server returned the header field “Set-Cookie” with the attribute “domain=localhost
”. The directive
proxy_cookie_domain localhost example.org;
will rewrite this attribute to “domain=example.org
”.
A dot at the beginning of the domain
and replacement
strings, and the domain
attribute is ignored. Matching is case-insensitive.
The strings domain
and replacement
can contain variables:
proxy_cookie_domain www.$host $host;
A directive can also be specified using regular expressions. In this case, domain
should start from the “~
” symbol. A regular expression can contain named and positional captures, and replacement
can reference them:
proxy_cookie_domain ~\.(?P<sl_domain>[-0-9a-z]+\.[a-z]+)$ $sl_domain;
There could be several proxy_cookie_domain
directives:
proxy_cookie_domain localhost example.org; proxy_cookie_domain ~\.([a-z]+\.[a-z]+)$ $1;
The off
parameter cancels all proxy_cookie_domain
directives on the current level:
proxy_cookie_domain off; proxy_cookie_domain localhost example.org; proxy_cookie_domain www.example.org example.org;
syntax: | proxy_cookie_path proxy_cookie_path |
default: | proxy_cookie_path off; |
context: | http , server , location |
This directive appeared in version 1.1.15.
Sets a text that should be changed in the path
attribute of the “Set-Cookie” header fields of a proxied server response. Suppose a proxied server returned the header field “Set-Cookie” with the attribute “path=/two/some/uri/
”. The directive
proxy_cookie_path /two/ /;
will rewrite this attribute to “path=/some/uri/
”.
The strings path
and replacement
can contain variables:
proxy_cookie_path $uri /some$uri;
A directive can also be specified using regular expressions. In this case, path
should either start from the “~
” symbol for a case-sensitive matching, or from the “~*
” symbols for case-insensitive matching. A regular expression can contain named and positional captures, and replacement
can reference them:
proxy_cookie_path ~*^/user/([^/]+) /u/$1;
There could be several proxy_cookie_path
directives:
proxy_cookie_path /one/ /; proxy_cookie_path / /two/;
The off
parameter cancels all proxy_cookie_path
directives on the current level:
proxy_cookie_path off; proxy_cookie_path /two/ /; proxy_cookie_path ~*^/user/([^/]+) /u/$1;
syntax: | proxy_headers_hash_bucket_size |
default: | proxy_headers_hash_bucket_size 64; |
context: | http , server , location |
Sets the bucket size
for hash tables used by the and directives. Details of setting up hash tables are provided in a separate document.
syntax: | proxy_headers_hash_max_size |
default: | proxy_headers_hash_max_size 512; |
context: | http , server , location |
Sets the maximum size
of hash tables used by the and directives. Details of setting up hash tables are provided in a separate document.
syntax: | proxy_hide_header |
default: | — |
context: | http , server , location |
By default, nginx does not pass the header fields “Date”, “Server”, “X-Pad”, and “X-Accel-...” from the response of a proxied server to a client. The proxy_hide_header
directive sets additional fields that will not be passed. If, on the contrary, the passing of fields needs to be permitted, the directive can be used.
syntax: | proxy_http_version |
default: | proxy_http_version 1.0; |
context: | http , server , location |
This directive appeared in version 1.1.4.
Sets the HTTP protocol version for proxying. By default, version 1.0 is used. Version 1.1 is recommended for use with keepalive connections.
syntax: | proxy_ignore_client_abort |
default: | proxy_ignore_client_abort off; |
context: | http , server , location |
Determines should the connection with a proxied server be closed if a client closes a connection without waiting for a response.
syntax: | proxy_ignore_headers |
default: | — |
context: | http , server , location |
Disables processing of certain response header fields from the proxied server. The following fields can be ignored: “X-Accel-Redirect”, “X-Accel-Expires”, “X-Accel-Limit-Rate” (1.1.6), “X-Accel-Buffering” (1.1.6), “X-Accel-Charset” (1.1.6), “Expires”, “Cache-Control”, and “Set-Cookie” (0.8.44).
If not disabled, processing of these header fields has the following effect:
- “X-Accel-Expires”, “Expires”, “Cache-Control”, and “Set-Cookie” set parameters of response ;
- “X-Accel-Redirect” performs an internal redirect to the specified URI;
- “X-Accel-Limit-Rate” sets a rate limit for transmission of a response to a client;
- “X-Accel-Buffering” enables or disables of a response;
- “X-Accel-Charset” sets the desired charset of a response.
syntax: | proxy_intercept_errors |
default: | proxy_intercept_errors off; |
context: | http , server , location |
Determines whether proxied responses with codes greater than or equal to 400 should be passed to a client or be redirected to nginx for processing using the error_page directive.
syntax: | proxy_max_temp_file_size |
default: | proxy_max_temp_file_size 1024m; |
context: | http , server , location |
When of responses from the proxied server is enabled, and the whole response does not fit into memory buffers set by the and directives, part of a response can be saved to a temporary file. This directive sets the maximum size
of a temporary file. The size of data written to a temporary file at a time is set by the directive.
Value of zero disables buffering of responses to temporary files.
syntax: | proxy_method |
default: | — |
context: | http , server , location |
Specifies the HTTP method
to use in requests forwarded to the proxied server instead of the method from the client request.
syntax: | proxy_next_upstream |
default: | proxy_next_upstream error timeout; |
context: | http , server , location |
Specifies in which cases a request should be passed to the next server:
error
- an error occurred while establishing a connection with the server, passing it a request, or reading the response header;
timeout
- a timeout has occurred while establishing a connection with the server, passing it a request, or reading the response header;
invalid_header
- a server returned empty or invalid response;
http_500
- a server returned a response with the code 500;
http_502
- a server returned a response with the code 502;
http_503
- a server returned a response with the code 503;
http_504
- a server returned a response with the code 504;
http_404
- a server returned a response with the code 404;
off
- disables passing a request to the next server.
It should be understood that passing a request to the next server is only possible if a client was not sent anything yet. That is, if an error or a timeout occurs in the middle of transferring a response, fixing this is impossible.
syntax: | proxy_no_cache |
default: | — |
context: | http , server , location |
Defines conditions under which the response will not be saved to a cache. If at least one value of the string parameters is not empty and is not equal to “0” then the response will not be saved:
proxy_no_cache $cookie_nocache $arg_nocache$arg_comment; proxy_no_cache $http_pragma $http_authorization;
Can be used along with the directive.
syntax: | proxy_pass |
default: | — |
context: | location , if in location , limit_except |
Sets the protocol and address of a proxied server, and an optional URI to which a location should be mapped. A protocol can be specified as “http
” or “https
”. An address can be specified as a domain name or IP address, and an optional port:
proxy_pass http://localhost:8000/uri/;
or as a UNIX-domain socket path specified after the word “unix
” and enclosed in colons:
proxy_pass http://unix:/tmp/backend.socket:/uri/;
If a domain name resolves to several addresses, all of them will be used in a round-robin fashion. In addition, an address can be specified as a server group.
A request URI is passed to the server as follows:
- If
proxy_pass
is specified with URI, when passing a request to the server, part of a normalized request URI matching the location is replaced by a URI specified in the directive:location /name/ { proxy_pass http://127.0.0.1/remote/; }
- If
proxy_pass
is specified without URI, a request URI is passed to the server in the same form as sent by a client when processing an original request, or the full normalized request URI is passed when processing the changed URI:location /some/path/ { proxy_pass http://127.0.0.1; }
Before version 1.1.12, if
proxy_pass
is specified without a URI, an original request URI might be passed instead of the changed URI in some cases.
In some cases, part of a request URI to be replaced cannot be determined:
- When location is specified using a regular expression.
In this case, the directive should be specified without URI.
- When URI is changed inside a proxied location using the rewrite directive, and this same configuration will be used to process a request (
break
):location /name/ { rewrite /name/([^/]+) /users?name=$1 break; proxy_pass http://127.0.0.1; }
In this case, a URI specified in the directive is ignored and the full changed request URI is passed to the server.
A server name, its port and passed URI can also be specified using variables:
proxy_pass http://$host$uri;
or even like this:
proxy_pass $request;
In this case the server name is searched among the described server groups, and if not found is determined using a resolver.
syntax: | proxy_pass_header |
default: | — |
context: | http , server , location |
Permits to pass header fields from a proxied server to a client.
syntax: | proxy_read_timeout |
default: | proxy_read_timeout 60s; |
context: | http , server , location |
Defines a timeout for reading a response from the proxied server. A timeout is only set between two successive read operations, not for the transmission of the whole response. If a proxied server does not transmit anything within this time, a connection is closed.
syntax: | proxy_pass_request_body |
default: | proxy_pass_request_body on; |
context: | http , server , location |
If disabled, the original request body will not be passed to the proxied server.
location /x-accel-redirect-here/ { proxy_method GET; proxy_pass_request_body off; proxy_set_header Content-Length ""; proxy_pass ... }
See also the and directives.
syntax: | proxy_pass_request_headers |
default: | proxy_pass_request_headers on; |
context: | http , server , location |
If disabled, header fields of the original request will not be passed to the proxied server.
location /x-accel-redirect-here/ { proxy_method GET; proxy_pass_request_headers off; proxy_pass_request_body off; proxy_pass ... }
See also the and directives.
syntax: | proxy_redirect proxy_redirect proxy_redirect |
default: | proxy_redirect default; |
context: | http , server , location |
Sets a text that should be changed in the header fields “Location” and “Refresh” of a response from the proxied server. Suppose a proxied server returned the header field “Location: http://localhost:8000/two/some/uri/
”. The directive
proxy_redirect http://localhost:8000/two/ http://frontend/one/;
will rewrite this string to “Location: http://frontend/one/some/uri/
”.
A server name may be omitted from the replacement
string:
proxy_redirect http://localhost:8000/two/ /;
then the primary server’s name and a port, if different from 80, will be substituted.
The default replacement specified by the default
parameter uses the parameters of the location and directives. Hence, the two configurations below are equivalent:
location /one/ { proxy_pass http://upstream:port/two/; proxy_redirect default;
location /one/ { proxy_pass http://upstream:port/two/; proxy_redirect http://upstream:port/two/ /one/;
The default
parameter is not permitted if is specified using variables.
A replacement
string can contain variables:
proxy_redirect http://localhost:8000/ http://$host:$server_port/;
A redirect
can also contain (1.1.11) variables:
proxy_redirect http://$proxy_host:8000/ /;
A directive can be specified (1.1.11) using regular expressions. In this case, redirect
should either start from the “~
” symbol for a case-sensitive matching, or from the “~*
” symbols for case-insensitive matching. A regular expression can contain named and positional captures, and replacement
can reference them:
proxy_redirect ~^(http://[^:]+):\d+(/.+)$ $1$2; proxy_redirect ~*/user/([^/]+)/(.+)$ http://$1.example.com/$2;
There could be several proxy_redirect
directives:
proxy_redirect default; proxy_redirect http://localhost:8000/ /; proxy_redirect http://www.example.com/ /;
The off
parameter cancels all proxy_redirect
directives on the current level:
proxy_redirect off; proxy_redirect default; proxy_redirect http://localhost:8000/ /; proxy_redirect http://www.example.com/ /;
Using this directive it is also possible to add host names to relative redirects issued by a proxied server:
proxy_redirect / /;
syntax: | proxy_send_lowat |
default: | proxy_send_lowat 0; |
context: | http , server , location |
If set to a non-zero value, nginx will try to minimize the number of send operations on outgoing connections to a proxied server by using either NOTE_LOWAT
flag of the kqueue method, or the SO_SNDLOWAT
socket option, with the specified size
.
This directive is ignored on Linux, Solaris, and Windows.
syntax: | proxy_send_timeout |
default: | proxy_send_timeout 60s; |
context: | http , server , location |
Sets a timeout for transmitting a request to the proxied server. A timeout is only set between two successive write operations, not for the transmission of the whole request. If a proxied server does not receive anything within this time, a connection is closed.
syntax: | proxy_set_body |
default: | — |
context: | http , server , location |
Allows to redefine request body passed to the proxied server. A value
can contain text, variables, and their combination.
syntax: | proxy_set_header |
default: | proxy_set_header Host $proxy_host; proxy_set_header Connection close; |
context: | http , server , location |
Allows to redefine or append fields to the request header to the proxied server. A value
can contain text, variables, and their combination. These directives are inherited from the previous level if and only if there are no proxy_set_header
directives defined on the current level. By default, only two fields are redefined:
proxy_set_header Host $proxy_host; proxy_set_header Connection close;
An unchanged “Host” request header field can be passed like this:
proxy_set_header Host $http_host;
However, if this field is not present in a client request header then nothing will be passed. In such a case it is better to use the $host
variable - its value equals the server name in the “Host” request header field, or the primary server name if this field is not present:
proxy_set_header Host $host;
In addition, a server name can be passed together with a port of the proxied server:
proxy_set_header Host $host:$proxy_port;
If the value of a header field is an empty string then this field will not be passed to a proxied server:
proxy_set_header Accept-Encoding "";
syntax: | proxy_ssl_session_reuse |
default: | proxy_ssl_session_reuse on; |
context: | http , server , location |
Determines whether SSL sessions can be reused when working with the proxied server. If the errors “SSL3_GET_FINISHED:digest check failed
” appear in the logs, try to disable session reuse.
syntax: | proxy_store |
default: | proxy_store off; |
context: | http , server , location |
Enables saving of files to a disk. The on
parameter saves files with paths corresponding to the directives alias or root. The off
parameter disables saving of files. In addition, the file name can be set explicitly using the string
with variables:
proxy_store /data/www$original_uri;
The modification time of files is set according to the received “Last-Modified” response header field. A response is first written to a temporary file, then a file is renamed. Starting from version 0.8.9 temporary files and the persistent store can be put on different file systems but be aware that in this case a file is copied across two file systems instead of the cheap rename operation. It is thus recommended that for any given location both saved files and a directory holding temporary files set by the directive are put on the same file system.
This directive can be used to create local copies of static unchangeable files, e.g.:
location /images/ { root /data/www; open_file_cache_errors off; error_page 404 = /fetch$uri; } location /fetch/ { internal; proxy_pass http://backend/; proxy_store on; proxy_store_access user:rw group:rw all:r; proxy_temp_path /data/temp; alias /data/www/; }
or like this:
location /images/ { root /data/www; error_page 404 = @fetch; } location @fetch { internal; proxy_pass http://backend; proxy_store on; proxy_store_access user:rw group:rw all:r; proxy_temp_path /data/temp; root /data/www; }
syntax: | proxy_store_access |
default: | proxy_store_access user:rw; |
context: | http , server , location |
Sets access permissions for newly created files and directories, e.g.:
proxy_store_access user:rw group:rw all:r;
If any group
or all
access permissions are specified then user
permissions may be omitted:
proxy_store_access group:rw all:r;
syntax: | proxy_temp_file_write_size |
default: | proxy_temp_file_write_size 8k|16k; |
context: | http , server , location |
Limits the size
of data written to a temporary file at a time, when buffering of responses from the proxied server to temporary files is enabled. By default, size
is limited by two buffers set by the and directives. The maximum size of a temporary file is set by the directive.
syntax: | proxy_temp_path |
default: | proxy_temp_path proxy_temp; |
context: | http , server , location |
Defines a directory for storing temporary files with data received from proxied servers. Up to three-level subdirectory hierarchy can be used underneath the specified directory. For example, in the following configuration
proxy_temp_path /spool/nginx/proxy_temp 1 2;
a temporary file might look like this:
/spool/nginx/proxy_temp/7/45/00000123457
Embedded Variables
The ngx_http_proxy_module
module supports embedded variables that can be used to compose headers using the directive:
$proxy_host
- name and port of a proxied server;
$proxy_port
- port of a proxied server;
$proxy_add_x_forwarded_for
- the “X-Forwarded-For” client request header field with the
$remote_addr
variable appended to it, separated by a comma. If the “X-Forwarded-For” field is not present in the client request header, the$proxy_add_x_forwarded_for
variable is equal to the$remote_addr
variable.