comparison xml/en/docs/stream/ngx_stream_proxy_module.xml @ 2142:ca7568f67dee

Sorted directives alphabetically.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 10 Apr 2018 18:39:34 +0300
parents a9a9a052b5bd
children 962e1adfa032
comparison
equal deleted inserted replaced
2141:10751277a8ad 2142:ca7568f67dee
382 </para> 382 </para>
383 383
384 </directive> 384 </directive>
385 385
386 386
387 <directive name="proxy_ssl_server_name">
388 <syntax><literal>on</literal> | <literal>off</literal></syntax>
389 <default>off</default>
390 <context>stream</context>
391 <context>server</context>
392
393 <para>
394 Enables or disables passing of the server name through
395 <link url="http://en.wikipedia.org/wiki/Server_Name_Indication">TLS
396 Server Name Indication extension</link> (SNI, RFC 6066)
397 when establishing a connection with the proxied server.
398 </para>
399
400 </directive>
401
402
403 <directive name="proxy_ssl_session_reuse">
404 <syntax><literal>on</literal> | <literal>off</literal></syntax>
405 <default>on</default>
406 <context>stream</context>
407 <context>server</context>
408
409 <para>
410 Determines whether SSL sessions can be reused when working with
411 the proxied server.
412 If the errors
413 “<literal>SSL3_GET_FINISHED:digest check failed</literal>”
414 appear in the logs, try disabling session reuse.
415 </para>
416
417 </directive>
418
419
420 <directive name="proxy_ssl_protocols"> 387 <directive name="proxy_ssl_protocols">
421 <syntax> 388 <syntax>
422 [<literal>SSLv2</literal>] 389 [<literal>SSLv2</literal>]
423 [<literal>SSLv3</literal>] 390 [<literal>SSLv3</literal>]
424 [<literal>TLSv1</literal>] 391 [<literal>TLSv1</literal>]
434 </para> 401 </para>
435 402
436 </directive> 403 </directive>
437 404
438 405
406 <directive name="proxy_ssl_server_name">
407 <syntax><literal>on</literal> | <literal>off</literal></syntax>
408 <default>off</default>
409 <context>stream</context>
410 <context>server</context>
411
412 <para>
413 Enables or disables passing of the server name through
414 <link url="http://en.wikipedia.org/wiki/Server_Name_Indication">TLS
415 Server Name Indication extension</link> (SNI, RFC 6066)
416 when establishing a connection with the proxied server.
417 </para>
418
419 </directive>
420
421
422 <directive name="proxy_ssl_session_reuse">
423 <syntax><literal>on</literal> | <literal>off</literal></syntax>
424 <default>on</default>
425 <context>stream</context>
426 <context>server</context>
427
428 <para>
429 Determines whether SSL sessions can be reused when working with
430 the proxied server.
431 If the errors
432 “<literal>SSL3_GET_FINISHED:digest check failed</literal>”
433 appear in the logs, try disabling session reuse.
434 </para>
435
436 </directive>
437
438
439 <directive name="proxy_ssl_trusted_certificate"> 439 <directive name="proxy_ssl_trusted_certificate">
440 <syntax><value>file</value></syntax> 440 <syntax><value>file</value></syntax>
441 <default/> 441 <default/>
442 <context>stream</context> 442 <context>stream</context>
443 <context>server</context> 443 <context>server</context>