comparison xml/en/docs/http/ngx_http_uwsgi_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 91f5c089f4ca
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_uwsgi_module" 10 <module name="Module ngx_http_uwsgi_module"
11 link="/en/docs/http/ngx_http_uwsgi_module.html" 11 link="/en/docs/http/ngx_http_uwsgi_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_uwsgi_module</literal> module allows passing 18 The <literal>ngx_http_uwsgi_module</literal> module allows passing
1077 </para> 1077 </para>
1078 1078
1079 </directive> 1079 </directive>
1080 1080
1081 1081
1082 <directive name="uwsgi_ssl_certificate">
1083 <syntax><value>file</value></syntax>
1084 <default/>
1085 <context>http</context>
1086 <context>server</context>
1087 <context>location</context>
1088 <appeared-in>1.7.8</appeared-in>
1089
1090 <para>
1091 Specifies a <value>file</value> with the certificate in the PEM format
1092 used for authentication to a secured uwsgi server.
1093 </para>
1094
1095 </directive>
1096
1097
1098 <directive name="uwsgi_ssl_certificate_key">
1099 <syntax><value>file</value></syntax>
1100 <default/>
1101 <context>http</context>
1102 <context>server</context>
1103 <context>location</context>
1104 <appeared-in>1.7.8</appeared-in>
1105
1106 <para>
1107 Specifies a <value>file</value> with the secret key in the PEM format
1108 used for authentication to a secured uwsgi server.
1109 </para>
1110
1111 </directive>
1112
1113
1082 <directive name="uwsgi_ssl_ciphers"> 1114 <directive name="uwsgi_ssl_ciphers">
1083 <syntax><value>ciphers</value></syntax> 1115 <syntax><value>ciphers</value></syntax>
1084 <default>DEFAULT</default> 1116 <default>DEFAULT</default>
1085 <context>http</context> 1117 <context>http</context>
1086 <context>server</context> 1118 <context>server</context>
1133 when establishing a connection with the secured uwsgi server. 1165 when establishing a connection with the secured uwsgi server.
1134 </para> 1166 </para>
1135 1167
1136 <para> 1168 <para>
1137 By default, the host part from <link id="uwsgi_pass"/> is used. 1169 By default, the host part from <link id="uwsgi_pass"/> is used.
1170 </para>
1171
1172 </directive>
1173
1174
1175 <directive name="uwsgi_ssl_password_file">
1176 <syntax><value>file</value></syntax>
1177 <default/>
1178 <context>http</context>
1179 <context>server</context>
1180 <context>location</context>
1181 <appeared-in>1.7.8</appeared-in>
1182
1183 <para>
1184 Specifies a <value>file</value> with passphrases for
1185 <link id="uwsgi_ssl_certificate_key">secret keys</link>
1186 where each passphrase is specified on a separate line.
1187 Passphrases are tried in turn when loading the key.
1138 </para> 1188 </para>
1139 1189
1140 </directive> 1190 </directive>
1141 1191
1142 1192