=encoding utf-8 =head1 NAME ngx_http_proxy_module - Module ngx_http_proxy_module =head1 The C module allows passing requests to another server. =head1 Example Configuration location / { proxy_pass http://localhost:8000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } =head1 Directives =head2 proxy_bind B proxy_bind I> [transparent] E C> B I B I B I This directive appeared in version 0.8.22. Makes outgoing connections to a proxied server originate from the specified local IP address with an optional port (1.11.2). Parameter value can contain variables (1.3.12). The special value C (1.3.12) cancels the effect of the C directive inherited from the previous configuration level, which allows the system to auto-assign the local IP address and port. The C parameter (1.11.0) allows outgoing connections to a proxied server originate from a non-local IP address, for example, from a real IP address of a client: proxy_bind $remote_addr transparent; In order for this parameter to work, it is necessary to run nginx worker processes with the L privileges and configure kernel routing table to intercept network traffic from the proxied server. =head2 proxy_buffer_size B proxy_buffer_size I>> B I<4kE8k> B I B I B I Sets the I> of the buffer used for reading the first part of the response received from the proxied server. This part usually contains a small response header. By default, the buffer size is equal to one memory page. This is either 4K or 8K, depending on a platform. It can be made smaller, however. =head2 proxy_buffering B proxy_buffering I E C> B I B I B I B I 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 the buffers set by the L and L directives. If the whole response does not fit into memory, a part of it can be saved to a temporary file on the disk. Writing to temporary files is controlled by the L and L directives. When buffering is disabled, the 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 L directive. Buffering can also be enabled or disabled by passing “C” or “C” in the C response header field. This capability can be disabled using the L directive. =head2 proxy_buffers B proxy_buffers I> I>> B I<8 4kE8k> B I B I B I Sets the I> and I> of the 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. =head2 proxy_busy_buffers_size B proxy_busy_buffers_size I>> B I<8kE16k> B I B I B I When buffering of responses from the proxied server is enabled, limits the total I> of buffers that can be busy sending a response to the client while the response is not yet fully read. In the meantime, the rest of the buffers can be used for reading the response and, if needed, buffering part of the response to a temporary file. By default, I> is limited by the size of two buffers set by the L and L directives. =head2 proxy_cache B proxy_cache I> E C> B I B I B I B I Defines a shared memory zone used for caching. The same zone can be used in several places. Parameter value can contain variables (1.7.9). The C parameter disables caching inherited from the previous configuration level. =head2 proxy_cache_bypass B proxy_cache_bypass I> ...> B I B I B I 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 L directive. =head2 proxy_cache_convert_head B proxy_cache_convert_head I E C> B I B I B I B I This directive appeared in version 1.9.7. Enables or disables the conversion of the “C” method to “C” for caching. When the conversion is disabled, the cache key should be configured to include the C<$request_method>. =head2 proxy_cache_key B proxy_cache_key I>> B I<$scheme$proxy_host$request_uri> B I B I B I 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; =head2 proxy_cache_lock B proxy_cache_lock I E C> B I B I B I B I 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 L 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 L directive. =head2 proxy_cache_lock_age B proxy_cache_lock_age I>> B I<5s> B I B I B I This directive appeared in version 1.7.8. If the last request passed to the proxied server for populating a new cache element has not completed for the specified I>, one more request may be passed to the proxied server. =head2 proxy_cache_lock_timeout B proxy_cache_lock_timeout I>> B I<5s> B I B I B I This directive appeared in version 1.1.12. Sets a timeout for L. When the I> expires, the request will be passed to the proxied server, however, the response will not be cached. B Before 1.7.8, the response could be cached. =head2 proxy_cache_methods B proxy_cache_methods I< C E C E C ...> B I B I B I B I This directive appeared in version 0.7.59. If the client request method is listed in this directive then the response will be cached. “C” and “C” methods are always added to the list, though it is recommended to specify them explicitly. See also the L directive. =head2 proxy_cache_min_uses B proxy_cache_min_uses I>> B I<1> B I B I B I Sets the I> of requests after which the response will be cached. =head2 proxy_cache_path B proxy_cache_path I< I> [C=I>] [C=CEC] C=I>:I> [C=I>] [C=I>] [C=I>] [C=I>] [C=I>] [C=CEC] [C=I>] [C=I>] [C=I>]> B I Sets the path and other parameters of a cache. Cache data are stored in files. The file name in a cache is a result of applying the MD5 function to the cache key. The C 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, and then the file is renamed. Starting from version 0.8.9, temporary files and the cache can be put on different file systems. However, be aware that in this case a file is copied across two file systems instead of the cheap renaming operation. It is thus recommended that for any given location both cache and a directory holding temporary files are put on the same file system. The directory for temporary files is set based on the C parameter (1.7.10). If this parameter is omitted or set to the value C, the directory set by the L directive for the given location will be used. If the value is set to C, temporary files will be put directly in the cache directory. In addition, all active keys and information about data are stored in a shared memory zone, whose I> and I> are configured by the C parameter. One megabyte zone can store about 8 thousand keys. Cached data that are not accessed during the time specified by the C parameter get removed from the cache regardless of their freshness. By default, C is set to 10 minutes. The special “cache manager” process monitors the maximum cache size set by the C parameter. When this size is exceeded, it removes the least recently used data. A minute after the start the special “cache loader” process is activated. It loads information about previously cached data stored on file system into a cache zone. The loading is done in iterations. During one iteration no more than C items are loaded (by default, 100). Besides, the duration of one iteration is limited by the C parameter (by default, 200 milliseconds). Between iterations, a pause configured by the C parameter (by default, 50 milliseconds) is made. Additionally, the following parameters are available as part of our commercial subscription: =over =item C=CEC Instructs whether cache entries that match a wildcard key will be removed from the disk by the cache purger (1.7.12). Setting the parameter to C (default is C) will activate the “cache purger” process that permanently iterates through all cache entries and deletes the entries that match the wildcard key. =item C=I> Sets the number of items that will be scanned during one iteration (1.7.12). By default, C is set to 10. =item C=I> Sets the duration of one iteration (1.7.12). By default, C is set to 50 milliseconds. =item C=I> Sets a pause between iterations (1.7.12). By default, C is set to 50 milliseconds. =back =head2 proxy_cache_purge B proxy_cache_purge I B I B I B I This directive appeared in version 1.5.7. Defines conditions under which the request will be considered a cache purge request. If at least one value of the string parameters is not empty and is not equal to “0” then the cache entry with a corresponding cache key is removed. The result of successful operation is indicated by returning the C<204> (C) response. If the cache key of a purge request ends with an asterisk (“C<*>”), all cache entries matching the wildcard key will be removed from the cache. However, these entries will remain on the disk until they are deleted for either inactivity, or processed by the cache purger (1.7.12), or a client attempts to access them. Example configuration: proxy_cache_path /data/nginx/cache keys_zone=cache_zone:10m; map $request_method $purge_method { PURGE 1; default 0; } server { ... location / { proxy_pass http://backend; proxy_cache cache_zone; proxy_cache_key $uri; proxy_cache_purge $purge_method; } } B This functionality is available as part of our commercial subscription. =head2 proxy_cache_revalidate B proxy_cache_revalidate I E C> B I B I B I B I This directive appeared in version 1.5.7. Enables revalidation of expired cache items using conditional requests with the C and C header fields. =head2 proxy_cache_use_stale B proxy_cache_use_stale I< C E C E C E C E C E C E C E C E C E C E C ...> B I B I B I B I Determines in which cases a stale cached response can be used when an error occurs during communication with the proxied server. The directive’s parameters match the parameters of the L directive. The C parameter also permits using a stale cached response if a proxied server to process a request cannot be selected. Additionally, the C parameter permits using a stale cached response if it is currently being updated. This allows minimizing 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 L directive can be used. =head2 proxy_cache_valid B proxy_cache_valid I<[I> ...] I>> B I B I B I 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 I> is specified proxy_cache_valid 5m; then only 200, 301, and 302 responses are cached. In addition, the C parameter can be specified to cache any responses: 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 higher priority than setting of caching time using the directive. =over =item * The C header field sets caching time of a response in seconds. The zero value disables caching for a response. If the value starts with the C<@> prefix, it sets an absolute time in seconds since Epoch, up to which the response may be cached. =item * If the header does not include the C field, parameters of caching may be set in the header fields C or C. =item * If the header includes the C field, such a response will not be cached. =item * If the header includes the C field with the special value “C<*>”, such a response will not be cached (1.7.7). If the header includes the C field with another value, such a response will be cached taking into account the corresponding request header fields (1.7.7). =back Processing of one or more of these response header fields can be disabled using the L directive. =head2 proxy_connect_timeout B proxy_connect_timeout I>> B I<60s> B I B I B I Defines a timeout for establishing a connection with a proxied server. It should be noted that this timeout cannot usually exceed 75 seconds. =head2 proxy_cookie_domain B proxy_cookie_domain I> B proxy_cookie_domain I> I>> B I B I B I B I This directive appeared in version 1.1.15. Sets a text that should be changed in the C attribute of the C header fields of a proxied server response. Suppose a proxied server returned the C header field with the attribute “C”. The directive proxy_cookie_domain localhost example.org; will rewrite this attribute to “C”. A dot at the beginning of the I> and I> strings and the C attribute is ignored. Matching is case-insensitive. The I> and I> strings can contain variables: proxy_cookie_domain www.$host $host; The directive can also be specified using regular expressions. In this case, I> should start from the “C<~>” symbol. A regular expression can contain named and positional captures, and I> can reference them: proxy_cookie_domain ~\.(?P[-0-9a-z]+\.[a-z]+)$ $sl_domain; There could be several C directives: proxy_cookie_domain localhost example.org; proxy_cookie_domain ~\.([a-z]+\.[a-z]+)$ $1; The C parameter cancels the effect of all C directives on the current level: proxy_cookie_domain off; proxy_cookie_domain localhost example.org; proxy_cookie_domain www.example.org example.org; =head2 proxy_cookie_path B proxy_cookie_path I> B proxy_cookie_path I> I>> B I B I B I B I This directive appeared in version 1.1.15. Sets a text that should be changed in the C attribute of the C header fields of a proxied server response. Suppose a proxied server returned the C header field with the attribute “CtwoEsomeEuriE>”. The directive proxy_cookie_path /two/ /; will rewrite this attribute to “CsomeEuriE>”. The I> and I> strings can contain variables: proxy_cookie_path $uri /some$uri; The directive can also be specified using regular expressions. In this case, I> should either start from the “C<~>” symbol for a case-sensitive matching, or from the “C<~*>” symbols for case-insensitive matching. The regular expression can contain named and positional captures, and I> can reference them: proxy_cookie_path ~*^/user/([^/]+) /u/$1; There could be several C directives: proxy_cookie_path /one/ /; proxy_cookie_path / /two/; The C parameter cancels the effect of all C directives on the current level: proxy_cookie_path off; proxy_cookie_path /two/ /; proxy_cookie_path ~*^/user/([^/]+) /u/$1; =head2 proxy_force_ranges B proxy_force_ranges I E C> B I B I B I B I This directive appeared in version 1.7.7. Enables byte-range support for both cached and uncached responses from the proxied server regardless of the C field in these responses. =head2 proxy_headers_hash_bucket_size B proxy_headers_hash_bucket_size I>> B I<64> B I B I B I Sets the bucket I> for hash tables used by the L and L directives. The details of setting up hash tables are provided in a separate L. =head2 proxy_headers_hash_max_size B proxy_headers_hash_max_size I>> B I<512> B I B I B I Sets the maximum I> of hash tables used by the L and L directives. The details of setting up hash tables are provided in a separate L. =head2 proxy_hide_header B proxy_hide_header I>> B I B I B I By default, nginx does not pass the header fields C, C, C, and C from the response of a proxied server to a client. The C directive sets additional fields that will not be passed. If, on the contrary, the passing of fields needs to be permitted, the L directive can be used. =head2 proxy_http_version B proxy_http_version I E C<1.1>> B I<1.0> B I B I B I 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 L connections and L. =head2 proxy_ignore_client_abort B proxy_ignore_client_abort I E C> B I B I B I B I Determines whether the connection with a proxied server should be closed when a client closes the connection without waiting for a response. =head2 proxy_ignore_headers B proxy_ignore_headers I> ...> B I B I B I Disables processing of certain response header fields from the proxied server. The following fields can be ignored: C, C, C (1.1.6), C (1.1.6), C (1.1.6), C, C, C (0.8.44), and C (1.7.7). If not disabled, processing of these header fields has the following effect: =over =item * C, C, C, C, and C set the parameters of response caching; =item * C performs an L to the specified URI; =item * C sets the L for transmission of a response to a client; =item * C enables or disables buffering of a response; =item * C sets the desired L of a response. =back =head2 proxy_intercept_errors B proxy_intercept_errors I E C> B I B I B I B I Determines whether proxied responses with codes greater than or equal to 300 should be passed to a client or be redirected to nginx for processing with the L directive. =head2 proxy_limit_rate B proxy_limit_rate I>> B I<0> B I B I B I This directive appeared in version 1.7.7. Limits the speed of reading the response from the proxied server. The I> is specified in bytes per second. The zero value disables rate limiting. The limit is set per a request, and so if nginx simultaneously opens two connections to the proxied server, the overall rate will be twice as much as the specified limit. The limitation works only if buffering of responses from the proxied server is enabled. =head2 proxy_max_temp_file_size B proxy_max_temp_file_size I>> B I<1024m> B I B I B I When buffering of responses from the proxied server is enabled, and the whole response does not fit into the buffers set by the L and L directives, a part of the response can be saved to a temporary file. This directive sets the maximum I> of the temporary file. The size of data written to the temporary file at a time is set by the L directive. The zero value disables buffering of responses to temporary files. B This restriction does not apply to responses that will be cached or stored on disk. =head2 proxy_method B proxy_method I>> B I B I B I Specifies the HTTP I> to use in requests forwarded to the proxied server instead of the method from the client request. =head2 proxy_next_upstream B proxy_next_upstream I< C E C E C E C E C E C E C E C E C E C E C ...> B I B I B I B I Specifies in which cases a request should be passed to the next server: =over =item C an error occurred while establishing a connection with the server, passing a request to it, or reading the response header; =item C a timeout has occurred while establishing a connection with the server, passing a request to it, or reading the response header; =item C a server returned an empty or invalid response; =item C a server returned a response with the code 500; =item C a server returned a response with the code 502; =item C a server returned a response with the code 503; =item C a server returned a response with the code 504; =item C a server returned a response with the code 403; =item C a server returned a response with the code 404; =item C normally, requests with a L method (C, C, C) are not passed to the next server if a request has been sent to an upstream server (1.9.13); enabling this option explicitly allows retrying such requests; =item C disables passing a request to the next server. =back One should bear in mind that passing a request to the next server is only possible if nothing has been sent to a client yet. That is, if an error or timeout occurs in the middle of the transferring of a response, fixing this is impossible. The directive also defines what is considered an L of communication with a server. The cases of C, C and C are always considered unsuccessful attempts, even if they are not specified in the directive. The cases of C, C, C and C are considered unsuccessful attempts only if they are specified in the directive. The cases of C and C are never considered unsuccessful attempts. Passing a request to the next server can be limited by the number of tries and by time. =head2 proxy_next_upstream_timeout B proxy_next_upstream_timeout I>> B I<0> B I B I B I This directive appeared in version 1.7.5. Limits the time during which a request can be passed to the next server. The C<0> value turns off this limitation. =head2 proxy_next_upstream_tries B proxy_next_upstream_tries I>> B I<0> B I B I B I This directive appeared in version 1.7.5. Limits the number of possible tries for passing a request to the next server. The C<0> value turns off this limitation. =head2 proxy_no_cache B proxy_no_cache I> ...> B I B I B I 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 L directive. =head2 proxy_pass B proxy_pass I>> B I B I B I Sets the protocol and address of a proxied server and an optional URI to which a location should be mapped. As a protocol, “C” or “C” can be specified. The 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 “C” 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 L. A request URI is passed to the server as follows: =over =item * If the C directive is specified with a URI, then when a request is passed to the server, the part of a L request URI matching the location is replaced by a URI specified in the directive: location /name/ { proxy_pass http://127.0.0.1/remote/; } =item * If C is specified without a URI, the request URI is passed to the server in the same form as sent by a client when the original request is processed, or the full normalized request URI is passed when processing the changed URI: location /some/path/ { proxy_pass http://127.0.0.1; } B Before version 1.1.12, if C is specified without a URI, the original request URI might be passed instead of the changed URI in some cases. =back In some cases, the part of a request URI to be replaced cannot be determined: =over =item * When location is specified using a regular expression. In this case, the directive should be specified without a URI. =item * When the URI is changed inside a proxied location using the L directive, and this same configuration will be used to process a request (C): location /name/ { rewrite /name/([^/]+) /users?name=$1 break; proxy_pass http://127.0.0.1; } In this case, the URI specified in the directive is ignored and the full changed request URI is passed to the server. =back A server name, its port and the 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 L, and, if not found, is determined using a L. L proxying requires special configuration and is supported since version 1.3.13. =head2 proxy_pass_header B proxy_pass_header I>> B I B I B I Permits passing otherwise disabled header fields from a proxied server to a client. =head2 proxy_pass_request_body B proxy_pass_request_body I E C> B I B I B I B I Indicates whether the original request body is 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 L and L directives. =head2 proxy_pass_request_headers B proxy_pass_request_headers I E C> B I B I B I B I Indicates whether the header fields of the original request are 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 L and L directives. =head2 proxy_read_timeout B proxy_read_timeout I>> B I<60s> B I B I B I Defines a timeout for reading a response from the proxied server. The timeout is set only between two successive read operations, not for the transmission of the whole response. If the proxied server does not transmit anything within this time, the connection is closed. =head2 proxy_redirect B proxy_redirect I> B proxy_redirect I> B proxy_redirect I> I>> B I B I B I B I Sets the text that should be changed in the C and C header fields of a proxied server response. Suppose a proxied server returned the header field “CElocalhost:8000EtwoEsomeEuriE>”. The directive proxy_redirect http://localhost:8000/two/ http://frontend/one/; will rewrite this string to “CEfrontendEoneEsomeEuriE>”. A server name may be omitted in the I> string: proxy_redirect http://localhost:8000/two/ /; then the primary server’s name and port, if different from 80, will be inserted. The default replacement specified by the C parameter uses the parameters of the L and L 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 C parameter is not permitted if L is specified using variables. A I> string can contain variables: proxy_redirect http://localhost:8000/ http://$host:$server_port/; A I> can also contain (1.1.11) variables: proxy_redirect http://$proxy_host:8000/ /; The directive can be specified (1.1.11) using regular expressions. In this case, I> should either start with the “C<~>” symbol for a case-sensitive matching, or with the “C<~*>” symbols for case-insensitive matching. The regular expression can contain named and positional captures, and I> can reference them: proxy_redirect ~^(http://[^:]+):\d+(/.+)$ $1$2; proxy_redirect ~*/user/([^/]+)/(.+)$ http://$1.example.com/$2; There could be several C directives: proxy_redirect default; proxy_redirect http://localhost:8000/ /; proxy_redirect http://www.example.com/ /; The C parameter cancels the effect of all C 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 / /; =head2 proxy_request_buffering B proxy_request_buffering I E C> B I B I B I B I This directive appeared in version 1.7.11. Enables or disables buffering of a client request body. When buffering is enabled, the entire request body is L from the client before sending the request to a proxied server. When buffering is disabled, the request body is sent to the proxied server immediately as it is received. In this case, the request cannot be passed to the next server if nginx already started sending the request body. When HTTPE1.1 chunked transfer encoding is used to send the original request body, the request body will be buffered regardless of the directive value unless HTTPE1.1 is enabled for proxying. =head2 proxy_send_lowat B proxy_send_lowat I>> B I<0> B I B I B I If the directive is 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 C flag of the L method, or the C socket option, with the specified I>. This directive is ignored on Linux, Solaris, and Windows. =head2 proxy_send_timeout B proxy_send_timeout I>> B I<60s> B I B I B I Sets a timeout for transmitting a request to the proxied server. The timeout is set only between two successive write operations, not for the transmission of the whole request. If the proxied server does not receive anything within this time, the connection is closed. =head2 proxy_set_body B proxy_set_body I>> B I B I B I Allows redefining the request body passed to the proxied server. The I> can contain text, variables, and their combination. =head2 proxy_set_header B proxy_set_header I> I>> B I B I B I B I B I Allows redefining or appending fields to the request header passed to the proxied server. The I> can contain text, variables, and their combinations. These directives are inherited from the previous level if and only if there are no C directives defined on the current level. By default, only two fields are redefined: proxy_set_header Host $proxy_host; proxy_set_header Connection close; If caching is enabled, the header fields C, C, C, C, C, and C from the original request are not passed to the proxied server. An unchanged C 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 C<$host> variableEits value equals the server name in the C request header field or the primary server name if this field is not present: proxy_set_header Host $host; In addition, the server name can be passed together with the 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 ""; =head2 proxy_ssl_certificate B proxy_ssl_certificate I>> B I B I B I This directive appeared in version 1.7.8. Specifies a I> with the certificate in the PEM format used for authentication to a proxied HTTPS server. =head2 proxy_ssl_certificate_key B proxy_ssl_certificate_key I>> B I B I B I This directive appeared in version 1.7.8. Specifies a I> with the secret key in the PEM format used for authentication to a proxied HTTPS server. The value C:I>:I> can be specified instead of the I> (1.7.9), which loads a secret key with a specified I> from the OpenSSL engine I>. =head2 proxy_ssl_ciphers B proxy_ssl_ciphers I>> B I B I B I B I This directive appeared in version 1.5.6. Specifies the enabled ciphers for requests to a proxied HTTPS server. The ciphers are specified in the format understood by the OpenSSL library. The full list can be viewed using the “C” command. =head2 proxy_ssl_crl B proxy_ssl_crl I>> B I B I B I This directive appeared in version 1.7.0. Specifies a I> with revoked certificates (CRL) in the PEM format used to verify the certificate of the proxied HTTPS server. =head2 proxy_ssl_name B proxy_ssl_name I>> B I<$proxy_host> B I B I B I This directive appeared in version 1.7.0. Allows overriding the server name used to verify the certificate of the proxied HTTPS server and to be passed through SNI when establishing a connection with the proxied HTTPS server. By default, the host part of the L URL is used. =head2 proxy_ssl_password_file B proxy_ssl_password_file I>> B I B I B I This directive appeared in version 1.7.8. Specifies a I> with passphrases for secret keys where each passphrase is specified on a separate line. Passphrases are tried in turn when loading the key. =head2 proxy_ssl_server_name B proxy_ssl_server_name I E C> B I B I B I B I This directive appeared in version 1.7.0. Enables or disables passing of the server name through L (SNI, RFC 6066) when establishing a connection with the proxied HTTPS server. =head2 proxy_ssl_session_reuse B proxy_ssl_session_reuse I E C> B I B I B I B I Determines whether SSL sessions can be reused when working with the proxied server. If the errors “C” appear in the logs, try disabling session reuse. =head2 proxy_ssl_protocols B proxy_ssl_protocols I< [C] [C] [C] [C] [C]> B I B I B I B I This directive appeared in version 1.5.6. Enables the specified protocols for requests to a proxied HTTPS server. =head2 proxy_ssl_trusted_certificate B proxy_ssl_trusted_certificate I>> B I B I B I This directive appeared in version 1.7.0. Specifies a I> with trusted CA certificates in the PEM format used to verify the certificate of the proxied HTTPS server. =head2 proxy_ssl_verify B proxy_ssl_verify I E C> B I B I B I B I This directive appeared in version 1.7.0. Enables or disables verification of the proxied HTTPS server certificate. =head2 proxy_ssl_verify_depth B proxy_ssl_verify_depth I>> B I<1> B I B I B I This directive appeared in version 1.7.0. Sets the verification depth in the proxied HTTPS server certificates chain. =head2 proxy_store B proxy_store I< C E C E I>> B I B I B I B I Enables saving of files to a disk. The C parameter saves files with paths corresponding to the directives L or L. The C parameter disables saving of files. In addition, the file name can be set explicitly using the I> with variables: proxy_store /data/www$original_uri; The modification time of files is set according to the received C response header field. The response is first written to a temporary file, and then the file is renamed. Starting from version 0.8.9, temporary files and the persistent store can be put on different file systems. However, be aware that in this case a file is copied across two file systems instead of the cheap renaming operation. It is thus recommended that for any given location both saved files and a directory holding temporary files, set by the L 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; 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; } =head2 proxy_store_access B proxy_store_access I>:I> ...> B I B I B I B I Sets access permissions for newly created files and directories, e.g.: proxy_store_access user:rw group:rw all:r; If any C or C access permissions are specified then C permissions may be omitted: proxy_store_access group:rw all:r; =head2 proxy_temp_file_write_size B proxy_temp_file_write_size I>> B I<8kE16k> B I B I B I Limits the I> 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, I> is limited by two buffers set by the L and L directives. The maximum size of a temporary file is set by the L directive. =head2 proxy_temp_path B proxy_temp_path I< I> [I> [I> [I>]]]> B I B I B I B I 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 See also the C parameter of the L directive. =head1 Embedded Variables The C module supports embedded variables that can be used to compose headers using the L directive: =over =item C<$proxy_host> name and port of a proxied server as specified in the L directive; =item C<$proxy_port> port of a proxied server as specified in the L directive, or the protocol’s default port; =item C<$proxy_add_x_forwarded_for> the C client request header field with the C<$remote_addr> variable appended to it, separated by a comma. If the C field is not present in the client request header, the C<$proxy_add_x_forwarded_for> variable is equal to the C<$remote_addr> variable. =back