Why won't haproxy capture my cookie? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T17:08:12Zhttp://stackoverflow.com/feeds/question/587671http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/587671/why-wont-haproxy-capture-my-cookie0Why won't haproxy capture my cookie?Mike2009-02-25T20:18:53Z2009-09-03T22:00:02Z
<p>I'm having trouble getting frontend cookie capture to work in haproxy. I have this in my config:</p>
<pre><code>frontend frontend 0.0.0.0:9999
[snip]
capture cookie foo len 10
</code></pre>
<p>Then I use nc to talk directly to the server and send it:</p>
<pre><code>GET / HTTP/1.1
Cookie: foo=bar
</code></pre>
<p>I get a log line, but there's a "-" where the captured cookie should be.</p>
http://stackoverflow.com/questions/587671/why-wont-haproxy-capture-my-cookie/588391#5883910Answer by Mike for Why won't haproxy capture my cookie?Mike2009-02-25T23:24:39Z2009-02-25T23:24:39Z<p>You're using version 1.3.15.2, but there's a cookie capture bug that wasn't fixed until 1.3.15.6.</p>