allow

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

listen

Syntax: listen address:port [ssl] [udp] [proxy_protocol] [backlog=number] [bind] [ipv6only=on|off] [reuseport] [so_keepalive=on|off|[keepidle]:[keepintvl]:[keepcnt]]; Default: — Context: server Sets the address and port for the socket on which the server will accept connections. It is possible to specify just the port. The address can also be a hostname, for example: listen 127.0.0.1:12345; listen *:12345; listen 12345; # same as *:12345 l

userid_path

Syntax: userid_path path; Default: userid_path /; Context: http, server, location Defines a path for which the cookie is set.

uwsgi_pass_header

Syntax: uwsgi_pass_header field; Default: — Context: http, server, location Permits passing otherwise disabled header fields from a uwsgi server to a client.

proxy_pass_header

Syntax: proxy_pass_header field; Default: — Context: http, server, location Permits passing otherwise disabled header fields from a proxied server to a client.

scgi_cache_methods

Syntax: scgi_cache_methods GET | HEAD | POST ...; Default: scgi_cache_methods GET HEAD; Context: http, server, location 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 scgi_no_cache directive.

userid_name

Syntax: userid_name name; Default: userid_name uid; Context: http, server, location Sets the cookie name.

map_hash_max_size

Syntax: map_hash_max_size size; Default: map_hash_max_size 2048; Context: http Sets the maximum size of the map variables hash tables. The details of setting up hash tables are provided in a separate document.

gunzip_buffers

Syntax: gunzip_buffers number size; Default: gunzip_buffers 32 4k|16 8k; Context: http, server, location Sets the number and size of buffers used to decompress a response. By default, the buffer size is equal to one memory page. This is either 4K or 8K, depending on a platform.

ssl_certificate_key

Syntax: ssl_certificate_key file; Default: — Context: http, server Specifies a file with the secret key in the PEM format for the given virtual server. The value engine:name:id can be specified instead of the file (1.7.9), which loads a secret key with a specified id from the OpenSSL engine name.