The ngx_http_grpc_module
module allows passing requests to a gRPC server (1.13.10). The module requires the ngx_http_v2_module module.
server { listen 9000 http2; location / { grpc_pass 127.0.0.1:9000; } }
Syntax: | grpc_bind
address
[transparent ] |
off; |
---|---|
Default: | — |
Context: | http , server , location |
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 off
cancels the effect of the grpc_bind
directive inherited from the previous configuration level, which allows the system to auto-assign the local IP address and port.
The transparent
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 superuser privileges. On Linux it is not required as if the transparent
parameter is specified, worker processes inherit the CAP_NET_RAW
capability from the master process. It is also necessary to configure kernel routing table to intercept network traffic from the gRPC server.
Syntax: | grpc_buffer_size size; |
---|---|
Default: | grpc_buffer_size 4k|8k; |
Context: | http , server , location |
Sets the size
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.
Syntax: | grpc_connect_timeout time; |
---|---|
Default: | grpc_connect_timeout 60s; |
Context: | http , server , location |
Defines a timeout for establishing a connection with a gRPC server. It should be noted that this timeout cannot usually exceed 75 seconds.
Syntax: | grpc_hide_header field; |
---|---|
Default: | — |
Context: | http , server , location |
By default, nginx does not pass the header fields “Date”, “Server”, and “X-Accel-...” from the response of a gRPC server to a client. The grpc_hide_header
directive sets additional fields that will not be passed. If, on the contrary, the passing of fields needs to be permitted, the grpc_pass_header directive can be used.
Syntax: | grpc_ignore_headers field ...; |
---|---|
Default: | — |
Context: | http , server , location |
Disables processing of certain response header fields from the gRPC server. The following fields can be ignored: “X-Accel-Redirect” and “X-Accel-Charset”.
If not disabled, processing of these header fields has the following effect:
Syntax: | grpc_intercept_errors on | off; |
---|---|
Default: | grpc_intercept_errors off; |
Context: | http , server , location |
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 error_page directive.
Syntax: | grpc_next_upstream
error |
timeout |
invalid_header |
http_500 |
http_502 |
http_503 |
http_504 |
http_403 |
http_404 |
http_429 |
non_idempotent |
off
...; |
---|---|
Default: | grpc_next_upstream error timeout; |
Context: | http , server , location |
Specifies in which cases a request should be passed to the next server:
error
timeout
invalid_header
http_500
http_502
http_503
http_504
http_403
http_404
http_429
non_idempotent
POST
, LOCK
, PATCH
) 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; off
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 unsuccessful attempt of communication with a server. The cases of error
, timeout
and invalid_header
are always considered unsuccessful attempts, even if they are not specified in the directive. The cases of http_500
, http_502
, http_503
, http_504
, and http_429
are considered unsuccessful attempts only if they are specified in the directive. The cases of http_403
and http_404
are never considered unsuccessful attempts.
Passing a request to the next server can be limited by the number of tries and by time.
Syntax: | grpc_next_upstream_timeout time; |
---|---|
Default: | grpc_next_upstream_timeout 0; |
Context: | http , server , location |
Limits the time during which a request can be passed to the next server. The 0
value turns off this limitation.
Syntax: | grpc_next_upstream_tries number; |
---|---|
Default: | grpc_next_upstream_tries 0; |
Context: | http , server , location |
Limits the number of possible tries for passing a request to the next server. The 0
value turns off this limitation.
Syntax: | grpc_pass address; |
---|---|
Default: | — |
Context: | location , if in location |
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 “grpc://
” scheme can be used:
grpc_pass grpc://127.0.0.1:9000;
To use gRPC over SSL, the “grpcs://
” 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 server group.
Syntax: | grpc_pass_header field; |
---|---|
Default: | — |
Context: | http , server , location |
Permits passing otherwise disabled header fields from a gRPC server to a client.
Syntax: | grpc_read_timeout time; |
---|---|
Default: | grpc_read_timeout 60s; |
Context: | http , server , location |
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.
Syntax: | grpc_send_timeout time; |
---|---|
Default: | grpc_send_timeout 60s; |
Context: | http , server , location |
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.
Syntax: | grpc_set_header field value; |
---|---|
Default: | grpc_set_header Content-Length $content_length; |
Context: | http , server , location |
Allows redefining or appending fields to the request header passed to the gRPC server. The value
can contain text, variables, and their combinations. These directives are inherited from the previous level if and only if there are no grpc_set_header
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 "";
Syntax: | grpc_socket_keepalive on | off; |
---|---|
Default: | grpc_socket_keepalive off; |
Context: | http , server , location |
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 “on
”, the SO_KEEPALIVE
socket option is turned on for the socket.
Syntax: | grpc_ssl_certificate file; |
---|---|
Default: | — |
Context: | http , server , location |
Specifies a file
with the certificate in the PEM format used for authentication to a gRPC SSL server.
Syntax: | grpc_ssl_certificate_key file; |
---|---|
Default: | — |
Context: | http , server , location |
Specifies a file
with the secret key in the PEM format used for authentication to a gRPC SSL server.
The value engine
:name
:id
can be specified instead of the file
, which loads a secret key with a specified id
from the OpenSSL engine name
.
Syntax: | grpc_ssl_ciphers ciphers; |
---|---|
Default: | grpc_ssl_ciphers DEFAULT; |
Context: | http , server , location |
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 “openssl ciphers
” command.
Syntax: | grpc_ssl_crl file; |
---|---|
Default: | — |
Context: | http , server , location |
Specifies a file
with revoked certificates (CRL) in the PEM format used to verify the certificate of the gRPC SSL server.
Syntax: | grpc_ssl_name name; |
---|---|
Default: | grpc_ssl_name host from grpc_pass; |
Context: | http , server , location |
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 grpc_pass is used.
Syntax: | grpc_ssl_password_file file; |
---|---|
Default: | — |
Context: | http , server , location |
Specifies a file
with passphrases for secret keys where each passphrase is specified on a separate line. Passphrases are tried in turn when loading the key.
Syntax: | grpc_ssl_protocols
[SSLv2]
[SSLv3]
[TLSv1]
[TLSv1.1]
[TLSv1.2]
[TLSv1.3]; |
---|---|
Default: | grpc_ssl_protocols TLSv1 TLSv1.1 TLSv1.2; |
Context: | http , server , location |
Enables the specified protocols for requests to a gRPC SSL server.
Syntax: | grpc_ssl_server_name on | off; |
---|---|
Default: | grpc_ssl_server_name off; |
Context: | http , server , location |
Enables or disables passing of the server name through TLS Server Name Indication extension (SNI, RFC 6066) when establishing a connection with the gRPC SSL server.
Syntax: | grpc_ssl_session_reuse on | off; |
---|---|
Default: | grpc_ssl_session_reuse on; |
Context: | http , server , location |
Determines whether SSL sessions can be reused when working with the gRPC server. If the errors “SSL3_GET_FINISHED:digest check failed
” appear in the logs, try disabling session reuse.
Syntax: | grpc_ssl_trusted_certificate file; |
---|---|
Default: | — |
Context: | http , server , location |
Specifies a file
with trusted CA certificates in the PEM format used to verify the certificate of the gRPC SSL server.
Syntax: | grpc_ssl_verify on | off; |
---|---|
Default: | grpc_ssl_verify off; |
Context: | http , server , location |
Enables or disables verification of the gRPC SSL server certificate.
Syntax: | grpc_ssl_verify_depth number; |
---|---|
Default: | grpc_ssl_verify_depth 1; |
Context: | http , server , location |
Sets the verification depth in the gRPC SSL server certificates chain.
© 2002-2018 Igor Sysoev
© 2011-2018 Nginx, Inc.
Licensed under the BSD License.
https://nginx.org/en/docs/http/ngx_http_grpc_module.html