=encoding utf-8 =head1 NAME ngx_http_grpc_module - Module ngx_http_grpc_module =head1 The C module allows passing requests to a gRPC server (1.13.10). The module requires the L module. =head1 Example Configuration server { listen 9000; http2 on; location / { grpc_pass 127.0.0.1:9000; } } =head1 Directives =head2 grpc_bind B grpc_bind I< I> [C] E C> B I B I B I Makes outgoing connections to a gRPC server originate from the specified local IP address with an optional port. Parameter value can contain variables. The special value C 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 allows outgoing connections to a gRPC server originate from a non-local IP address, for example, from a real IP address of a client: grpc_bind $remote_addr transparent; In order for this parameter to work, it is usually necessary to run nginx worker processes with the L privileges. On Linux it is not required as if the C parameter is specified, worker processes inherit the C capability from the master process. It is also necessary to configure kernel routing table to intercept network traffic from the gRPC server. =head2 grpc_buffer_size B grpc_buffer_size I>> B I<4kE8k> B I B I B I Sets the I> of the buffer used for reading the response received from the gRPC server. The response is passed to the client synchronously, as soon as it is received. =head2 grpc_connect_timeout B grpc_connect_timeout I>> B I<60s> B I B I B I Defines a timeout for establishing a connection with a gRPC server. It should be noted that this timeout cannot usually exceed 75 seconds. =head2 grpc_hide_header B grpc_hide_header I>> B I B I B I By default, nginx does not pass the header fields C, C, and C from the response of a gRPC 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 grpc_ignore_headers B grpc_ignore_headers I> ...> B I B I B I Disables processing of certain response header fields from the gRPC server. The following fields can be ignored: C and C. If not disabled, processing of these header fields has the following effect: =over =item * C performs an L to the specified URI; =item * C sets the desired L of a response. =back =head2 grpc_intercept_errors B grpc_intercept_errors I E C> B I B I B I B I Determines whether gRPC server responses with codes greater than or equal to 300 should be passed to a client or be intercepted and redirected to nginx for processing with the L directive. =head2 grpc_next_upstream B grpc_next_upstream I< C E 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 a server returned a response with the code 429; =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; 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, 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 grpc_next_upstream_timeout B grpc_next_upstream_timeout I>> B I<0> B I B I B I Limits the time during which a request can be passed to the next server. The C<0> value turns off this limitation. =head2 grpc_next_upstream_tries B grpc_next_upstream_tries I>> B I<0> B I B I B I Limits the number of possible tries for passing a request to the next server. The C<0> value turns off this limitation. =head2 grpc_pass B grpc_pass I>> B I B I Sets the gRPC server address. The address can be specified as a domain name or IP address, and a port: grpc_pass localhost:9000; or as a UNIX-domain socket path: grpc_pass unix:/tmp/grpc.socket; Alternatively, the “CE>” scheme can be used: grpc_pass grpc://127.0.0.1:9000; To use gRPC over SSL, the “CE>” scheme should be used: grpc_pass grpcs://127.0.0.1:443; 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. Parameter value can contain variables (1.17.8). In this case, if an address is specified as a domain name, the name is searched among the described L, and, if not found, is determined using a L. =head2 grpc_pass_header B grpc_pass_header I>> B I B I B I Permits passing otherwise disabled header fields from a gRPC server to a client. =head2 grpc_read_timeout B grpc_read_timeout I>> B I<60s> B I B I B I Defines a timeout for reading a response from the gRPC server. The timeout is set only between two successive read operations, not for the transmission of the whole response. If the gRPC server does not transmit anything within this time, the connection is closed. =head2 grpc_send_timeout B grpc_send_timeout I>> B I<60s> B I B I B I Sets a timeout for transmitting a request to the gRPC server. The timeout is set only between two successive write operations, not for the transmission of the whole request. If the gRPC server does not receive anything within this time, the connection is closed. =head2 grpc_set_header B grpc_set_header I> I>> B I B I B I B I Allows redefining or appending fields to the request header passed to the gRPC server. The I> can contain text, variables, and their combinations. These directives are inherited from the previous configuration level if and only if there are no C directives defined on the current level. If the value of a header field is an empty string then this field will not be passed to a gRPC server: grpc_set_header Accept-Encoding ""; =head2 grpc_socket_keepalive B grpc_socket_keepalive I E C> B I B I B I B I This directive appeared in version 1.15.6. Configures the “TCP keepalive” behavior for outgoing connections to a gRPC server. By default, the operating system’s settings are in effect for the socket. If the directive is set to the value “C”, the C socket option is turned on for the socket. =head2 grpc_ssl_certificate B grpc_ssl_certificate I>> B I B I B I Specifies a I> with the certificate in the PEM format used for authentication to a gRPC SSL server. Since version 1.21.0, variables can be used in the I> name. =head2 grpc_ssl_certificate_cache B grpc_ssl_certificate_cache I> B grpc_ssl_certificate_cache I< C=I> [C=I>] [C=I>]> B I B I B I B I This directive appeared in version 1.27.4. Defines a cache that stores SSL certificates and secret keys specified with variables. The directive has the following parameters: =over =item C sets the maximum number of elements in the cache; on cache overflow the least recently used (LRU) elements are removed; =item C defines a time after which an element is removed from the cache if it has not been accessed during this time; by default, it is 10 seconds; =item C defines a time during which an element in the cache is considered valid and can be reused; by default, it is 60 seconds. Certificates that exceed this time will be reloaded or revalidated; =item C disables the cache. =back Example: grpc_ssl_certificate $grpc_ssl_server_name.crt; grpc_ssl_certificate_key $grpc_ssl_server_name.key; grpc_ssl_certificate_cache max=1000 inactive=20s valid=1m; =head2 grpc_ssl_certificate_key B grpc_ssl_certificate_key I>> B I B I B I Specifies a I> with the secret key in the PEM format used for authentication to a gRPC SSL server. The value C:I>:I> can be specified instead of the I>, which loads a secret key with a specified I> from the OpenSSL engine I>. Since version 1.21.0, variables can be used in the I> name. =head2 grpc_ssl_ciphers B grpc_ssl_ciphers I>> B I B I B I B I Specifies the enabled ciphers for requests to a gRPC SSL server. The ciphers are specified in the format understood by the OpenSSL library. The full list can be viewed using the “C” command. =head2 grpc_ssl_conf_command B grpc_ssl_conf_command I> I>> B I B I B I This directive appeared in version 1.19.4. Sets arbitrary OpenSSL configuration L when establishing a connection with the gRPC SSL server. B The directive is supported when using OpenSSL 1.0.2 or higher. Several C directives can be specified on the same level. These directives are inherited from the previous configuration level if and only if there are no C directives defined on the current level. B Note that configuring OpenSSL directly might result in unexpected behavior. =head2 grpc_ssl_crl B grpc_ssl_crl I>> B I B I B I Specifies a I> with revoked certificates (CRL) in the PEM format used to verify the certificate of the gRPC SSL server. =head2 grpc_ssl_key_log B grpc_ssl_key_log I B I B I B I This directive appeared in version 1.27.2. Enables logging of gRPC SSL server connection SSL keys and specifies the path to the key log file. Keys are logged in the L format compatible with Wireshark. B This directive is available as part of our commercial subscription. =head2 grpc_ssl_name B grpc_ssl_name I>> B I B I B I B I Allows overriding the server name used to verify the certificate of the gRPC SSL server and to be passed through SNI when establishing a connection with the gRPC SSL server. By default, the host part from L is used. =head2 grpc_ssl_password_file B grpc_ssl_password_file I>> B I B I B I 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 grpc_ssl_protocols B grpc_ssl_protocols I< [C] [C] [C] [C] [C] [C]> B I B I B I B I Enables the specified protocols for requests to a gRPC SSL server. B The C parameter is used by default since 1.23.4. =head2 grpc_ssl_server_name B grpc_ssl_server_name I E C> B I B I B I B I Enables or disables passing of the server name through L (SNI, RFC 6066) when establishing a connection with the gRPC SSL server. =head2 grpc_ssl_session_reuse B grpc_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 gRPC server. If the errors “C” appear in the logs, try disabling session reuse. =head2 grpc_ssl_trusted_certificate B grpc_ssl_trusted_certificate I>> B I B I B I Specifies a I> with trusted CA certificates in the PEM format used to verify the certificate of the gRPC SSL server. =head2 grpc_ssl_verify B grpc_ssl_verify I E C> B I B I B I B I Enables or disables verification of the gRPC SSL server certificate. =head2 grpc_ssl_verify_depth B grpc_ssl_verify_depth I>> B I<1> B I B I B I Sets the verification depth in the gRPC SSL server certificates chain.