comparison xml/en/docs/http/ngx_http_ssl_module.xml @ 2040:093855e77388

Updated info about SNI.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 07 Sep 2017 17:13:47 +0300
parents dabca59da4ce
children 3d9e7993c201
comparison
equal deleted inserted replaced
2039:d2969b2f69ae 2040:093855e77388
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_ssl_module" 10 <module name="Module ngx_http_ssl_module"
11 link="/en/docs/http/ngx_http_ssl_module.html" 11 link="/en/docs/http/ngx_http_ssl_module.html"
12 lang="en" 12 lang="en"
13 rev="35"> 13 rev="36">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_ssl_module</literal> module provides the 18 The <literal>ngx_http_ssl_module</literal> module provides the
171 </note> 171 </note>
172 </para> 172 </para>
173 173
174 <para> 174 <para>
175 It should be kept in mind that due to the HTTPS protocol limitations 175 It should be kept in mind that due to the HTTPS protocol limitations
176 virtual servers should listen on different IP addresses: 176 for maximum interoperability virtual servers should listen on
177 <example> 177 <link doc="configuring_https_servers.xml" id="name_based_https_servers">different
178 server { 178 IP addresses</link>.
179 listen 192.168.1.1:443;
180 server_name one.example.com;
181 ssl_certificate one.example.com.crt;
182 ...
183 }
184
185 server {
186 listen 192.168.1.2:443;
187 server_name two.example.com;
188 ssl_certificate two.example.com.crt;
189 ...
190 }
191 </example>
192 otherwise
193 <link doc="configuring_https_servers.xml"
194 id="name_based_https_servers">the first server’s certificate</link>
195 will be issued for the second site.
196 </para> 179 </para>
197 180
198 </directive> 181 </directive>
199 182
200 183