comparison xml/en/docs/http/ngx_http_proxy_module.xml @ 993:a59aba3d4b67

Proxy: documented the "proxy_ssl_ciphers" directive. While here, corrected the description for "proxy_ssl_protocols".
author Andrei Belov <defan@nginx.com>
date Wed, 02 Oct 2013 13:50:07 +0400
parents 7cc496641627
children 2275611970dd
comparison
equal deleted inserted replaced
992:7cc496641627 993:a59aba3d4b67
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_proxy_module" 10 <module name="Module ngx_http_proxy_module"
11 link="/en/docs/http/ngx_http_proxy_module.html" 11 link="/en/docs/http/ngx_http_proxy_module.html"
12 lang="en" 12 lang="en"
13 rev="13"> 13 rev="14">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_proxy_module</literal> module allows passing 18 The <literal>ngx_http_proxy_module</literal> module allows passing
1360 </para> 1360 </para>
1361 1361
1362 </directive> 1362 </directive>
1363 1363
1364 1364
1365 <directive name="proxy_ssl_ciphers">
1366 <syntax><value>ciphers</value></syntax>
1367 <default>DEFAULT</default>
1368 <context>http</context>
1369 <context>server</context>
1370 <context>location</context>
1371 <appeared-in>1.5.6</appeared-in>
1372
1373 <para>
1374 Specifies the enabled ciphers for requests to a proxied HTTPS server.
1375 The ciphers are specified in the format understood by the OpenSSL library.
1376 </para>
1377
1378 <para>
1379 The full list can be viewed using the
1380 “<command>openssl ciphers</command>” command.
1381 </para>
1382
1383 </directive>
1384
1385
1365 <directive name="proxy_ssl_session_reuse"> 1386 <directive name="proxy_ssl_session_reuse">
1366 <syntax><literal>on</literal> | <literal>off</literal></syntax> 1387 <syntax><literal>on</literal> | <literal>off</literal></syntax>
1367 <default>on</default> 1388 <default>on</default>
1368 <context>http</context> 1389 <context>http</context>
1369 <context>server</context> 1390 <context>server</context>
1392 <context>server</context> 1413 <context>server</context>
1393 <context>location</context> 1414 <context>location</context>
1394 <appeared-in>1.5.6</appeared-in> 1415 <appeared-in>1.5.6</appeared-in>
1395 1416
1396 <para> 1417 <para>
1397 Enables the specified protocols for HTTPS requests to a proxied server. 1418 Enables the specified protocols for requests to a proxied HTTPS server.
1398 </para> 1419 </para>
1399 1420
1400 </directive> 1421 </directive>
1401 1422
1402 1423