comparison xml/en/docs/http/ngx_http_grpc_module.xml @ 2142:ca7568f67dee

Sorted directives alphabetically.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 10 Apr 2018 18:39:34 +0300
parents b7dd3e8ee9c2
children d765ffffd08c
comparison
equal deleted inserted replaced
2141:10751277a8ad 2142:ca7568f67dee
552 </para> 552 </para>
553 553
554 </directive> 554 </directive>
555 555
556 556
557 <directive name="grpc_ssl_server_name">
558 <syntax><literal>on</literal> | <literal>off</literal></syntax>
559 <default>off</default>
560 <context>http</context>
561 <context>server</context>
562 <context>location</context>
563
564 <para>
565 Enables or disables passing of the server name through
566 <link url="http://en.wikipedia.org/wiki/Server_Name_Indication">TLS
567 Server Name Indication extension</link> (SNI, RFC 6066)
568 when establishing a connection with the gRPC SSL server.
569 </para>
570
571 </directive>
572
573
574 <directive name="grpc_ssl_session_reuse">
575 <syntax><literal>on</literal> | <literal>off</literal></syntax>
576 <default>on</default>
577 <context>http</context>
578 <context>server</context>
579 <context>location</context>
580
581 <para>
582 Determines whether SSL sessions can be reused when working with
583 the gRPC server.
584 If the errors
585 “<literal>SSL3_GET_FINISHED:digest check failed</literal>”
586 appear in the logs, try disabling session reuse.
587 </para>
588
589 </directive>
590
591
592 <directive name="grpc_ssl_protocols"> 557 <directive name="grpc_ssl_protocols">
593 <syntax> 558 <syntax>
594 [<literal>SSLv2</literal>] 559 [<literal>SSLv2</literal>]
595 [<literal>SSLv3</literal>] 560 [<literal>SSLv3</literal>]
596 [<literal>TLSv1</literal>] 561 [<literal>TLSv1</literal>]
607 </para> 572 </para>
608 573
609 </directive> 574 </directive>
610 575
611 576
577 <directive name="grpc_ssl_server_name">
578 <syntax><literal>on</literal> | <literal>off</literal></syntax>
579 <default>off</default>
580 <context>http</context>
581 <context>server</context>
582 <context>location</context>
583
584 <para>
585 Enables or disables passing of the server name through
586 <link url="http://en.wikipedia.org/wiki/Server_Name_Indication">TLS
587 Server Name Indication extension</link> (SNI, RFC 6066)
588 when establishing a connection with the gRPC SSL server.
589 </para>
590
591 </directive>
592
593
594 <directive name="grpc_ssl_session_reuse">
595 <syntax><literal>on</literal> | <literal>off</literal></syntax>
596 <default>on</default>
597 <context>http</context>
598 <context>server</context>
599 <context>location</context>
600
601 <para>
602 Determines whether SSL sessions can be reused when working with
603 the gRPC server.
604 If the errors
605 “<literal>SSL3_GET_FINISHED:digest check failed</literal>”
606 appear in the logs, try disabling session reuse.
607 </para>
608
609 </directive>
610
611
612 <directive name="grpc_ssl_trusted_certificate"> 612 <directive name="grpc_ssl_trusted_certificate">
613 <syntax><value>file</value></syntax> 613 <syntax><value>file</value></syntax>
614 <default/> 614 <default/>
615 <context>http</context> 615 <context>http</context>
616 <context>server</context> 616 <context>server</context>