|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8" /> |
5 | | - <title>HAProxy version 2.6.21-12 - Configuration Manual</title> |
| 5 | + <title>HAProxy version 2.6.21-60 - Configuration Manual</title> |
6 | 6 | <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> |
7 | 7 | <link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" /> |
8 | 8 | <link href="../css/page.css?0.4.2-15" rel="stylesheet" /> |
|
4145 | 4145 | You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br> |
4146 | 4146 | </p> |
4147 | 4147 | <p class="text-right"> |
4148 | | - <small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2025/01/29</b></small> |
| 4148 | + <small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2025/04/17</b></small> |
4149 | 4149 | </p> |
4150 | 4150 | </div> |
4151 | 4151 | <!-- /.sidebar --> |
|
4156 | 4156 | <div class="text-center"> |
4157 | 4157 | <h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1> |
4158 | 4158 | <h2>Configuration Manual</h2> |
4159 | | - <p><strong>version 2.6.21-12</strong></p> |
| 4159 | + <p><strong>version 2.6.21-60</strong></p> |
4160 | 4160 | <p> |
4161 | 4161 | 2025/01/29<br> |
4162 | 4162 |
|
@@ -6309,6 +6309,7 @@ <h2 id="chapter-2.7" data-target="2.7"><small><a class="small" href="#2.7">2.7.< |
6309 | 6309 | - <a href="#nopoll">nopoll</a> |
6310 | 6310 | - <a href="#noreuseport">noreuseport</a> |
6311 | 6311 | - <a href="#nosplice">nosplice</a> |
| 6312 | + - <a href="#profiling.memory">profiling.memory</a> |
6312 | 6313 | - <a href="#profiling.tasks">profiling.tasks</a> |
6313 | 6314 | - <a href="#server-state-base">server-state-base</a> |
6314 | 6315 | - <a href="#server-state-file">server-state-file</a> |
@@ -14233,7 +14234,8 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.< |
14233 | 14234 | third retry. You can disable redispatches with a value of 0.</pre> |
14234 | 14235 | </div> |
14235 | 14236 | <pre class="text">In HTTP mode, if a server designated by a cookie is down, clients may |
14236 | | -definitely stick to it because they cannot flush the cookie, so they will not |
| 14237 | +definitely stick to it, for example when using "<a href="#option%20persist">option persist</a>" or |
| 14238 | +"<a href="#force-persist">force-persist</a>", because they cannot flush the cookie, so they will not |
14237 | 14239 | be able to access the service anymore. |
14238 | 14240 |
|
14239 | 14241 | Specifying "<a href="#option%20redispatch">option redispatch</a>" will allow the proxy to break cookie or |
@@ -14265,7 +14267,7 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.< |
14265 | 14267 |
|
14266 | 14268 | If this option has been enabled in a "defaults" section, it can be disabled |
14267 | 14269 | in a specific instance by prepending the "no" keyword before it. |
14268 | | -</pre><div class="page-header"><b>See also :</b> "<a href="#retries">retries</a>", "<a href="#force-persist">force-persist</a>"</div> |
| 14270 | +</pre><div class="page-header"><b>See also :</b> "<a href="#option%20persist">option persist</a>", "<a href="#force-persist">force-persist</a>", "<a href="#retries">retries</a>"</div> |
14269 | 14271 | <a class="anchor" name="option"></a><a class="anchor" name="4-option"></a><a class="anchor" name="4.2-option"></a><a class="anchor" name="option (Proxies)"></a><a class="anchor" name="option (Alphabetically sorted keywords reference)"></a><a class="anchor" name="option redis-check"></a><a class="anchor" name="4-option redis-check"></a><a class="anchor" name="4.2-option redis-check"></a><a class="anchor" name="option redis-check (Proxies)"></a><a class="anchor" name="option redis-check (Alphabetically sorted keywords reference)"></a><div class="keyword"><b><a class="anchor" name="option redis-check"></a><a href="#4.2-option%20redis-check">option redis-check</a></b></div><pre class="text">Use redis health checks for server testing |
14270 | 14272 | </pre><div><p> May be used in sections :</p><table class="table table-bordered" border="0" cellspacing="0" cellpadding="0"> |
14271 | 14273 | <thead><tr><th>defaults</th><th>frontend</th><th>listen</th><th>backend</th></tr></thead> |
@@ -17106,8 +17108,8 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.< |
17106 | 17108 | <span class="comment"># and reject everything else. (works for HTTP/1 and HTTP/2 connections)</span> |
17107 | 17109 | acl is_host_com hdr(Host) -i example.com |
17108 | 17110 | tcp-request inspect-delay 5s |
17109 | | -tcp-request switch-mode http if HTTP |
17110 | | -tcp-request reject <span class="comment"># non-HTTP traffic is implicit here</span> |
| 17111 | +tcp-request content switch-mode http if HTTP |
| 17112 | +tcp-request content reject <span class="comment"># non-HTTP traffic is implicit here</span> |
17111 | 17113 | ... |
17112 | 17114 | http-request reject unless is_host_com |
17113 | 17115 | </code></pre> |
@@ -26504,7 +26506,7 @@ <h2 id="chapter-11.3" data-target="11.3"><small><a class="small" href="#11.3">11 |
26504 | 26506 | <br> |
26505 | 26507 | <hr> |
26506 | 26508 | <div class="text-right"> |
26507 | | - HAProxy 2.6.21-12 – Configuration Manual<br> |
| 26509 | + HAProxy 2.6.21-60 – Configuration Manual<br> |
26508 | 26510 | <small>, 2025/01/29</small> |
26509 | 26511 | </div> |
26510 | 26512 | </div> |
|
0 commit comments