comparison xml/en/docs/http/load_balancing.xml @ 2134:4cafd82e5007

Added info about gRPC to various modules.
author Yaroslav Zhuravlev <yar@nginx.com>
date Thu, 05 Apr 2018 15:59:41 +0300
parents f9a138e5ab14
children 2be49a02a2e3
comparison
equal deleted inserted replaced
2133:bb3d2ce5192e 2134:4cafd82e5007
7 <!DOCTYPE article SYSTEM "../../../../dtd/article.dtd"> 7 <!DOCTYPE article SYSTEM "../../../../dtd/article.dtd">
8 8
9 <article name="Using nginx as HTTP load balancer" 9 <article name="Using nginx as HTTP load balancer"
10 link="/en/docs/http/load_balancing.html" 10 link="/en/docs/http/load_balancing.html"
11 lang="en" 11 lang="en"
12 rev="4"> 12 rev="5">
13 13
14 <section name="Introduction"> 14 <section name="Introduction">
15 15
16 <para> 16 <para>
17 Load balancing across multiple application instances is a commonly used 17 Load balancing across multiple application instances is a commonly used
93 balancing to distribute the requests. 93 balancing to distribute the requests.
94 </para> 94 </para>
95 95
96 <para> 96 <para>
97 Reverse proxy implementation in nginx includes load balancing for HTTP, 97 Reverse proxy implementation in nginx includes load balancing for HTTP,
98 HTTPS, FastCGI, uwsgi, SCGI, and memcached. 98 HTTPS, FastCGI, uwsgi, SCGI, memcached, and gRPC.
99 </para> 99 </para>
100 100
101 <para> 101 <para>
102 To configure load balancing for HTTPS instead of HTTP, just use “https” 102 To configure load balancing for HTTPS instead of HTTP, just use “https”
103 as the protocol. 103 as the protocol.
104 </para> 104 </para>
105 105
106 <para> 106 <para>
107 When setting up load balancing for FastCGI, uwsgi, SCGI, or memcached, use 107 When setting up load balancing for FastCGI, uwsgi, SCGI, memcached, or gRPC, use
108 <link doc="ngx_http_fastcgi_module.xml" id="fastcgi_pass"/>, 108 <link doc="ngx_http_fastcgi_module.xml" id="fastcgi_pass"/>,
109 <link doc="ngx_http_uwsgi_module.xml" id="uwsgi_pass"/>, 109 <link doc="ngx_http_uwsgi_module.xml" id="uwsgi_pass"/>,
110 <link doc="ngx_http_scgi_module.xml" id="scgi_pass"/>, and 110 <link doc="ngx_http_scgi_module.xml" id="scgi_pass"/>,
111 <link doc="ngx_http_memcached_module.xml" id="memcached_pass"/> 111 <link doc="ngx_http_memcached_module.xml" id="memcached_pass"/>, and
112 <link doc="ngx_http_grpc_module.xml" id="grpc_pass"/>
112 directives respectively. 113 directives respectively.
113 </para> 114 </para>
114 115
115 </section> 116 </section>
116 117