comparison xml/en/docs/stream/ngx_stream_zone_sync_module.xml @ 2304:f4b9660316c5

Updated docs for the upcoming NGINX Plus release.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 10 Dec 2018 12:35:00 +0300
parents 283b1e67eaa6
children 075d88b3749b
comparison
equal deleted inserted replaced
2303:8da870c88c75 2304:f4b9660316c5
7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 7 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
8 8
9 <module name="Module ngx_stream_zone_sync_module" 9 <module name="Module ngx_stream_zone_sync_module"
10 link="/en/docs/stream/ngx_stream_zone_sync_module.html" 10 link="/en/docs/stream/ngx_stream_zone_sync_module.html"
11 lang="en" 11 lang="en"
12 rev="3"> 12 rev="4">
13 13
14 <section id="summary"> 14 <section id="summary">
15 15
16 <para> 16 <para>
17 The <literal>ngx_stream_zone_sync_module</literal> module (1.13.8) 17 The <literal>ngx_stream_zone_sync_module</literal> module (1.13.8)
206 specified after the “<literal>unix:</literal>” prefix. 206 specified after the “<literal>unix:</literal>” prefix.
207 A domain name that resolves to several IP addresses defines 207 A domain name that resolves to several IP addresses defines
208 multiple nodes at once. 208 multiple nodes at once.
209 </para> 209 </para>
210 210
211 <para> 211 <para id="resolve">
212 The <literal>resolve</literal> parameter instructs nginx to monitor 212 The <literal>resolve</literal> parameter instructs nginx to monitor
213 changes of the IP addresses that correspond to a domain name of the node 213 changes of the IP addresses that correspond to a domain name of the node
214 and automatically modify the configuration 214 and automatically modify the configuration
215 without the need of restarting nginx. 215 without the need of restarting nginx.
216 </para> 216 </para>
323 </para> 323 </para>
324 324
325 </directive> 325 </directive>
326 326
327 327
328 <directive name="zone_sync_ssl_name">
329 <syntax><value>name</value></syntax>
330 <default>host from zone_sync_server</default>
331 <context>stream</context>
332 <context>server</context>
333 <appeared-in>1.15.7</appeared-in>
334
335 <para>
336 Allows overriding the server name used to
337 <link id="zone_sync_ssl_verify">verify</link>
338 the certificate of a cluster server and to be
339 <link id="zone_sync_ssl_server_name">passed through SNI</link>
340 when establishing a connection with the cluster server.
341 </para>
342
343 <para>
344 By default, the host part of the <link id="zone_sync_server"/> address is used,
345 or resolved IP address if the <link id="resolve"/> parameter is specified.
346 </para>
347
348 </directive>
349
350
328 <directive name="zone_sync_ssl_password_file"> 351 <directive name="zone_sync_ssl_password_file">
329 <syntax><value>file</value></syntax> 352 <syntax><value>file</value></syntax>
330 <default/> 353 <default/>
331 <context>stream</context> 354 <context>stream</context>
332 <context>server</context> 355 <context>server</context>
358 </para> 381 </para>
359 382
360 </directive> 383 </directive>
361 384
362 385
386 <directive name="zone_sync_ssl_server_name">
387 <syntax><literal>on</literal> | <literal>off</literal></syntax>
388 <default>off</default>
389 <context>stream</context>
390 <context>server</context>
391 <appeared-in>1.15.7</appeared-in>
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 another cluster server.
398 </para>
399
400 </directive>
401
402
363 <directive name="zone_sync_ssl_trusted_certificate"> 403 <directive name="zone_sync_ssl_trusted_certificate">
364 <syntax><value>file</value></syntax> 404 <syntax><value>file</value></syntax>
365 <default/> 405 <default/>
366 <context>stream</context> 406 <context>stream</context>
367 <context>server</context> 407 <context>server</context>