comparison xml/en/docs/http/ngx_http_proxy_module.xml @ 1372:e0e1e5db06bb

Documented the proxy_ssl_certificate directive and friends.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 11 Dec 2014 14:01:23 +0300
parents 25db29c8875e
children 6e54b85dfb86
comparison
equal deleted inserted replaced
1371:5475304b61ad 1372:e0e1e5db06bb
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="31"> 13 rev="32">
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
1545 </para> 1545 </para>
1546 1546
1547 </directive> 1547 </directive>
1548 1548
1549 1549
1550 <directive name="proxy_ssl_certificate">
1551 <syntax><value>file</value></syntax>
1552 <default/>
1553 <context>http</context>
1554 <context>server</context>
1555 <context>location</context>
1556 <appeared-in>1.7.8</appeared-in>
1557
1558 <para>
1559 Specifies a <value>file</value> with the certificate in the PEM format
1560 used for authentication to a proxied HTTPS server.
1561 </para>
1562
1563 </directive>
1564
1565
1566 <directive name="proxy_ssl_certificate_key">
1567 <syntax><value>file</value></syntax>
1568 <default/>
1569 <context>http</context>
1570 <context>server</context>
1571 <context>location</context>
1572 <appeared-in>1.7.8</appeared-in>
1573
1574 <para>
1575 Specifies a <value>file</value> with the secret key in the PEM format
1576 used for authentication to a proxied HTTPS server.
1577 </para>
1578
1579 </directive>
1580
1581
1550 <directive name="proxy_ssl_ciphers"> 1582 <directive name="proxy_ssl_ciphers">
1551 <syntax><value>ciphers</value></syntax> 1583 <syntax><value>ciphers</value></syntax>
1552 <default>DEFAULT</default> 1584 <default>DEFAULT</default>
1553 <context>http</context> 1585 <context>http</context>
1554 <context>server</context> 1586 <context>server</context>
1601 when establishing a connection with the proxied HTTPS server. 1633 when establishing a connection with the proxied HTTPS server.
1602 </para> 1634 </para>
1603 1635
1604 <para> 1636 <para>
1605 By default, the host part of the <link id="proxy_pass"/> URL is used. 1637 By default, the host part of the <link id="proxy_pass"/> URL is used.
1638 </para>
1639
1640 </directive>
1641
1642
1643 <directive name="proxy_ssl_password_file">
1644 <syntax><value>file</value></syntax>
1645 <default/>
1646 <context>http</context>
1647 <context>server</context>
1648 <context>location</context>
1649 <appeared-in>1.7.8</appeared-in>
1650
1651 <para>
1652 Specifies a <value>file</value> with passphrases for
1653 <link id="proxy_ssl_certificate_key">secret keys</link>
1654 where each passphrase is specified on a separate line.
1655 Passphrases are tried in turn when loading the key.
1606 </para> 1656 </para>
1607 1657
1608 </directive> 1658 </directive>
1609 1659
1610 1660