autoindex_localtime

Syntax: autoindex_localtime on | off; Default: autoindex_localtime off; Context: http, server, location For the HTML format, specifies whether times in the directory listing should be output in the local time zone or UTC.

scgi_pass_request_headers

Syntax: scgi_pass_request_headers on | off; Default: scgi_pass_request_headers on; Context: http, server, location Indicates whether the header fields of the original request are passed to the SCGI server. See also the scgi_pass_request_body directive.

About nginScript

About nginScript What is currently supported What is not supported yet Download and install Installing as a Linux package Building from the sources Known Issues nginScript is a subset of the JavaScript language that allows implementing location and variable handlers in http and stream. nginScript is created in compliance with ECMAScript 5.1 with some ECMAScript 6 extensions. The compliance is still evolving.

connection_pool_size

Syntax: connection_pool_size size; Default: connection_pool_size 256|512; Context: http, server Allows accurate tuning of per-connection memory allocations. This directive has minimal impact on performance and should not generally be used. By default, the size is equal to 256 bytes on 32-bit platforms and 512 bytes on 64-bit platforms. Prior to version 1.9.8, the default value was 256 on all platforms.

directio_alignment

Syntax: directio_alignment size; Default: directio_alignment 512; Context: http, server, location This directive appeared in version 0.8.11. Sets the alignment for directio. In most cases, a 512-byte alignment is enough. However, when using XFS under Linux, it needs to be increased to 4K.

Connection processing methods

Connection processing methods nginx supports a variety of connection processing methods. The availability of a particular method depends on the platform used. On platforms that support several methods nginx will normally select the most efficient method automatically. However, if needed, a connection processing method can be selected explicitly with the use directive. The following connection processing methods are supported: select — standard method. The supporting module is built automa

real_ip_header

Syntax: real_ip_header field | X-Real-IP | X-Forwarded-For | proxy_protocol; Default: real_ip_header X-Real-IP; Context: http, server, location Defines the request header field whose value will be used to replace the client address. The X-Real-IP and X-Forwarded-For parameters may contain an optional port (1.11.0). The address and port should be specified according to RFC 3986. The proxy_protocol parameter (1.5.12) changes the client address to the one from the

fastcgi_bind

Syntax: fastcgi_bind address [transparent] | off; Default: — Context: http, server, location This directive appeared in version 0.8.22. Makes outgoing connections to a FastCGI 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 off (1.3.12) cancels the effect of the fastcgi_bind directive inherited from the previous configuration level, which allows the system to auto-as

server

Syntax: server { ... } Default: — Context: stream Sets the configuration for a server.

uwsgi_ssl_verify

Syntax: uwsgi_ssl_verify on | off; Default: uwsgi_ssl_verify off; Context: http, server, location This directive appeared in version 1.7.0. Enables or disables verification of the secured uwsgi server certificate.