Deploy GitHub Pages
This commit is contained in:
parent
c9ce4104a0
commit
8300bdfbb4
7 changed files with 61 additions and 62 deletions
|
|
@ -1080,7 +1080,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>--enable-dynamic-configuration</td>
|
||||
<td>Dynamically refresh backends on topology changes instead of reloading NGINX. Feature backed by OpenResty Lua libraries.</td>
|
||||
<td>Dynamically refresh backends on topology changes instead of reloading NGINX. Feature backed by OpenResty Lua libraries. (enabled by default)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>--enable-ssl-chain-completion</td>
|
||||
|
|
|
|||
|
|
@ -2980,7 +2980,7 @@ Same for numbers, like "100".</p>
|
|||
<tr>
|
||||
<td align="left"><a href="#load-balance">load-balance</a></td>
|
||||
<td align="left">string</td>
|
||||
<td align="left">"least_conn"</td>
|
||||
<td align="left">"round_robin"</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left"><a href="#variables-hash-bucket-size">variables-hash-bucket-size</a></td>
|
||||
|
|
@ -3435,11 +3435,11 @@ By default worker processes are not bound to any specific CPUs. The value can be
|
|||
The value can either be:</p>
|
||||
<ul>
|
||||
<li>round_robin: to use the default round robin loadbalancer</li>
|
||||
<li>least_conn: to use the least connected method</li>
|
||||
<li>ip_hash: to use a hash of the server for routing.</li>
|
||||
<li>ewma: to use the peak ewma method for routing (only available with <code class="codehilite">enable-dynamic-configuration</code> flag) </li>
|
||||
<li>least_conn: to use the least connected method (<em>note</em> that this is available only in non-dynamic mode: <code class="codehilite">--enable-dynamic-configuration=false</code>)</li>
|
||||
<li>ip_hash: to use a hash of the server for routing (<em>note</em> that this is available only in non-dynamic mode: <code class="codehilite">--enable-dynamic-configuration=false</code>, but alternatively you can consider using <code class="codehilite">nginx.ingress.kubernetes.io/upstream-hash-by</code>)</li>
|
||||
<li>ewma: to use the Peak EWMA method for routing (<a href="https://github.com/kubernetes/ingress-nginx/blob/master/rootfs/etc/nginx/lua/balancer/ewma.lua">implementation</a>)</li>
|
||||
</ul>
|
||||
<p>The default is least_conn.</p>
|
||||
<p>The default is <code class="codehilite">round_robin</code>.</p>
|
||||
<p><em>References:</em>
|
||||
<a href="http://nginx.org/en/docs/http/load_balancing.html">http://nginx.org/en/docs/http/load_balancing.html</a></p>
|
||||
<h2 id="variables-hash-bucket-size">variables-hash-bucket-size<a class="headerlink" href="#variables-hash-bucket-size" title="Permanent link">¶</a></h2>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue