proxy_buffering

Syntax: proxy_buffering on | off; 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 the buffers set by the proxy_buffer_size and proxy_buffers 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

ssl_verify_depth

Syntax: ssl_verify_depth number; Default: ssl_verify_depth 1; Context: http, server Sets the verification depth in the client certificates chain.

proxy_ssl_protocols

Syntax: proxy_ssl_protocols [SSLv2] [SSLv3] [TLSv1] [TLSv1.1] [TLSv1.2]; Default: proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2; Context: http, server, location This directive appeared in version 1.5.6. Enables the specified protocols for requests to a proxied HTTPS server.

proxy_ssl_verify_depth

Syntax: proxy_ssl_verify_depth number; Default: proxy_ssl_verify_depth 1; Context: stream, server Sets the verification depth in the proxied server certificates chain.

return

Syntax: return value; Default: — Context: server Specifies a value to send to the client. The value can contain text, variables, and their combination.

modern_browser_value

Syntax: modern_browser_value string; Default: modern_browser_value 1; Context: http, server, location Sets a value for the $modern_browser variables.

ssl_verify_depth

Syntax: ssl_verify_depth number; Default: ssl_verify_depth 1; Context: stream, server This directive appeared in version 1.11.8. Sets the verification depth in the client certificates chain.

allow

Syntax: allow address | CIDR | unix: | all; Default: — Context: stream, server Allows access for the specified network or address. If the special value unix: is specified, allows access for all UNIX-domain sockets.

ssl_session_tickets

Syntax: ssl_session_tickets on | off; Default: ssl_session_tickets on; Context: http, server This directive appeared in version 1.5.9. Enables or disables session resumption through TLS session tickets.

uwsgi_ssl_certificate

Syntax: uwsgi_ssl_certificate file; Default: — Context: http, server, location This directive appeared in version 1.7.8. Specifies a file with the certificate in the PEM format used for authentication to a secured uwsgi server.