<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[200$ - Update haproxy to 1.5-dev17]]></title><description><![CDATA[<p dir="auto">Hey all,</p>
<p dir="auto">we're interested in the lates haproxy package that enables ssl offloading. As far as i can overview this haproxy needs to be compiled with other options and 2 new settings for ssl key and cert have to be added…</p>
<p dir="auto">The bigger problem is i don't know if this really works with freebsd...</p>
<p dir="auto">Here are some helpful links:<br />
http://blog.exceliance.fr/2012/09/04/howto-ssl-native-in-haproxy/<br />
http://haproxy.1wt.eu/download/1.5/src/CHANGELOG</p>
<p dir="auto">Is it possible to get a receipt from whoever takes this bounty? :) German laws... ^^</p>
<p dir="auto">Max</p>
]]></description><link>https://forum.netgate.com/topic/53305/200-update-haproxy-to-1-5-dev17</link><generator>RSS for Node</generator><lastBuildDate>Tue, 17 Mar 2026 08:58:41 GMT</lastBuildDate><atom:link href="https://forum.netgate.com/topic/53305.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 20 Feb 2013 10:31:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Tue, 21 May 2013 19:07:30 GMT]]></title><description><![CDATA[<p dir="auto">This is awesome, I'm currenly using HAProxy 1.5 in a jail on my PfSense box for SSL Termination, it works great!  But, I'll be even happier to get this in an easy to install pfsense package!</p>
<p dir="auto">Here's some stuff I learned that might help others..</p>
<p dir="auto"><strong>HAProxy</strong></p>
<pre><code>
        option forwardfor
        option http-server-close
        reqadd X-Forwarded-Proto:\ https
</code></pre>
<p dir="auto">The 'forwardfor' is because most backends don't yet support HAProxy's proxy protocol.<br />
I use the 'X-Forwarded-Proto' header to see if requests are ssl in varnish / nginx.<br />
The 'http-server-close' tells haproxy it needs to close the connection to the backend. this is so it resends the ip+protocol header for each request. This is better then closing the entire connection with 'httpclose' as the client may quickly request more stuff before the timeout and you won't have the overhead of stating a new connection.</p>
<p dir="auto"><strong>Varnish</strong></p>
<pre><code>if ( !client.ip ~ haproxy )
                {set req.http.X-Forwarded-For = client.ip; set req.http.X-Forwarded-Proto = http;}
</code></pre>
<p dir="auto">This way clients can't spoof their IP, or that they are using https</p>
<p dir="auto"><strong>NGINX</strong></p>
<pre><code>set_real_ip_from 192.168.1.1;
real_ip_header X-Forwarded-For;
http {
        map $http_x_forwarded_proto $server_https {
                default off;
                https on;
}

##fastcgi_params##
fastcgi_param HTTPS $server_https;
####
</code></pre>
]]></description><link>https://forum.netgate.com/post/396659</link><guid isPermaLink="true">https://forum.netgate.com/post/396659</guid><dc:creator><![CDATA[josh4trunks]]></dc:creator><pubDate>Tue, 21 May 2013 19:07:30 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Sun, 14 Apr 2013 00:42:31 GMT]]></title><description><![CDATA[<p dir="auto">Hey guys,</p>
<p dir="auto">I am and have been for little more then a month been improving the haproxy-devel package for pfSense.</p>
<p dir="auto">@ HarvUK<br />
It is possible to create multiple frontends and configure them to be 'shared', and assign a certificate to each one of them. This will allow to have multiple https sites behind 1 IP. (You can either go for SNI, or SSLoffloading for that).</p>
<p dir="auto">@ a n y o n e<br />
Currently also 1.5-dev18 is online, and in progress to compile against OpenSSL 1.0.1 which is possible (but still trying to figure out how to put in the package.xml for the automatic builds..) to allow for using 'SPDY' though i wont add that to the GUI, it could then be configured in the 'advanced' option text fields..</p>
<p dir="auto">For questions, other usefull improvements, or bugs, or just things that are 'illogical' send me a PM, or contact me PiBa-NL on IRC ##pfsense.</p>
<p dir="auto">Also for pfSense2.0,<br />
Its actually possible to install the package there if you 'must'.. But its unsupported in every way, and not available in the package manager.. And not 'allowed' into the main pfSense package tree. <a href="https://raw.github.com/PiBa-NL/pfsense-packages/3c1278fbdecdc07108124b17de943c55589075a6/config/haproxy-devel/haproxy-devel_install_on_pfs_2_0.php" target="_blank" rel="noopener noreferrer nofollow ugc">https://raw.github.com/PiBa-NL/pfsense-packages/3c1278fbdecdc07108124b17de943c55589075a6/config/haproxy-devel/haproxy-devel_install_on_pfs_2_0.php</a> and requires you to place and call the php file 'manually'.. Also for latest release OpenSSL needs to be installed from the console. "pkg_add -r openssl"..  This because 2.0 is a 'release' version, and it is illogical to run a 'development' software/package on it while version 2.1 of pfSense is also nearing 'release' status and as such is also stable enough for people who wish to experiment..</p>
<p dir="auto">greets PiBa-NL</p>
]]></description><link>https://forum.netgate.com/post/389602</link><guid isPermaLink="true">https://forum.netgate.com/post/389602</guid><dc:creator><![CDATA[PiBa]]></dc:creator><pubDate>Sun, 14 Apr 2013 00:42:31 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Wed, 27 Mar 2013 13:36:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/harvuk">@<bdi>HarvUK</bdi></a>:</p>
<blockquote>
<p dir="auto">Do you know if this will get pushed as an official package any time soon, or do I need to ask you very nicely and buy you a beer for the instructions ;)</p>
</blockquote>
<p dir="auto">It will not be on 2.0 but in 2.1.</p>
<p dir="auto">I can push here instructions and then you decide about donating.</p>
]]></description><link>https://forum.netgate.com/post/386779</link><guid isPermaLink="true">https://forum.netgate.com/post/386779</guid><dc:creator><![CDATA[marcelloc]]></dc:creator><pubDate>Wed, 27 Mar 2013 13:36:23 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Wed, 27 Mar 2013 11:41:10 GMT]]></title><description><![CDATA[<p dir="auto">I'm curious.. can you enter multiple one SSL cert for each listener?</p>
<p dir="auto">This looks like it might solve our SNI issues.</p>
<p dir="auto">Do you know if this will get pushed as an official package any time soon, or do I need to ask you very nicely and buy you a beer for the instructions ;)</p>
<p dir="auto">Many thanks,</p>
<p dir="auto">Harv</p>
]]></description><link>https://forum.netgate.com/post/386762</link><guid isPermaLink="true">https://forum.netgate.com/post/386762</guid><dc:creator><![CDATA[HarvUK]]></dc:creator><pubDate>Wed, 27 Mar 2013 11:41:10 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Fri, 22 Mar 2013 02:37:58 GMT]]></title><description><![CDATA[<p dir="auto">I'll send instructions for pfSense 2.0 via personal message.</p>
]]></description><link>https://forum.netgate.com/post/385852</link><guid isPermaLink="true">https://forum.netgate.com/post/385852</guid><dc:creator><![CDATA[marcelloc]]></dc:creator><pubDate>Fri, 22 Mar 2013 02:37:58 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Fri, 22 Mar 2013 00:07:46 GMT]]></title><description><![CDATA[<p dir="auto">Hi, I am also interested in running this version of ha proxy - are you going to share the instructions? i'm happy to donate :)</p>
]]></description><link>https://forum.netgate.com/post/385830</link><guid isPermaLink="true">https://forum.netgate.com/post/385830</guid><dc:creator><![CDATA[macdabby]]></dc:creator><pubDate>Fri, 22 Mar 2013 00:07:46 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Tue, 05 Mar 2013 07:14:48 GMT]]></title><description><![CDATA[<p dir="auto">This on is done. Thanks for the great work!</p>
]]></description><link>https://forum.netgate.com/post/382688</link><guid isPermaLink="true">https://forum.netgate.com/post/382688</guid><dc:creator><![CDATA[dexcs]]></dc:creator><pubDate>Tue, 05 Mar 2013 07:14:48 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Fri, 22 Feb 2013 14:33:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dexcs">@<bdi>dexcs</bdi></a>:</p>
<blockquote>
<p dir="auto">One question: How can i install the package? Via package manager?</p>
</blockquote>
<p dir="auto">yes, just wainting package compilation by core team, the gui is <a href="https://github.com/bsdperimeter/pfsense-packages/commit/53eb86fcb96be2cf952153f285f42e92820b0fc5" target="_blank" rel="noopener noreferrer nofollow ugc">already pushed</a></p>
]]></description><link>https://forum.netgate.com/post/380746</link><guid isPermaLink="true">https://forum.netgate.com/post/380746</guid><dc:creator><![CDATA[marcelloc]]></dc:creator><pubDate>Fri, 22 Feb 2013 14:33:18 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Thu, 21 Feb 2013 17:34:27 GMT]]></title><description><![CDATA[<p dir="auto">Wow, that was fast!</p>
<p dir="auto">Please ping me on (mynick)@jabber.ccc.de any we will do the payment….</p>
<p dir="auto">One question: How can i install the package? Via package manager?</p>
<p dir="auto">Max</p>
]]></description><link>https://forum.netgate.com/post/380552</link><guid isPermaLink="true">https://forum.netgate.com/post/380552</guid><dc:creator><![CDATA[dexcs]]></dc:creator><pubDate>Thu, 21 Feb 2013 17:34:27 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Wed, 20 Feb 2013 21:56:40 GMT]]></title><description><![CDATA[<p dir="auto">service is up and running…</p>
<p dir="auto">Next step: test if it really works...</p>
<p dir="auto">[2.0.1-RELEASE]: haproxy -v<br />
HA-Proxy version 1.5-dev17 2012/12/28<br />
Copyright 2000-2012 Willy Tarreau <a href="mailto:w@1wt.eu" target="_blank" rel="noopener noreferrer nofollow ugc">w@1wt.eu</a>[2.0.1-RELEASE]: ps ax | grep -i haproxy<br />
28894  ??  Ss     0:00.00 /usr/local/sbin/haproxy -f /var/etc/haproxy.cfg -p /var/run/haproxy.pid -D<br />
29008  ??  Ss     0:00.00 /usr/local/sbin/haproxy -f /var/etc/haproxy.cfg -p /var/run/haproxy.pid -D<br />
29045  ??  Ss     0:00.00 /usr/local/sbin/haproxy -f /var/etc/haproxy.cfg -p /var/run/haproxy.pid -D<br />
29138  ??  Ss     0:00.00 /usr/local/sbin/haproxy -f /var/etc/haproxy.cfg -p /var/run/haproxy.pid -D<br />
45745   0  S+     0:00.00 grep -i haproxy<a href="mailto:/w@1wt.eu" target="_blank" rel="noopener noreferrer nofollow ugc">/w@1wt.eu</a></p>
]]></description><link>https://forum.netgate.com/post/380372</link><guid isPermaLink="true">https://forum.netgate.com/post/380372</guid><dc:creator><![CDATA[marcelloc]]></dc:creator><pubDate>Wed, 20 Feb 2013 21:56:40 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Fri, 22 Feb 2013 19:46:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dhatz">@<bdi>dhatz</bdi></a>:</p>
<blockquote>
<p dir="auto">Apparently there is a FreeBSD port of -dev17:</p>
</blockquote>
<p dir="auto">Yes, I've compiled it and I'm testing it and it's new options on pfsense.</p>
<p dir="auto"><img src="/public/_imported_attachments_/1/haproxy_15.png_thumb" alt="haproxy_15.png_thumb" class=" img-fluid img-markdown" /><br />
<img src="/public/_imported_attachments_/1/haproxy_15.png" alt="haproxy_15.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.netgate.com/post/380346</link><guid isPermaLink="true">https://forum.netgate.com/post/380346</guid><dc:creator><![CDATA[marcelloc]]></dc:creator><pubDate>Fri, 22 Feb 2013 19:46:55 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Wed, 20 Feb 2013 19:30:57 GMT]]></title><description><![CDATA[<p dir="auto">Apparently there is a FreeBSD port of -dev17:</p>
<p dir="auto">https://www.freshports.org/net/haproxy-devel/</p>
]]></description><link>https://forum.netgate.com/post/380328</link><guid isPermaLink="true">https://forum.netgate.com/post/380328</guid><dc:creator><![CDATA[dhatz]]></dc:creator><pubDate>Wed, 20 Feb 2013 19:30:57 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Wed, 20 Feb 2013 19:01:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dexcs">@<bdi>dexcs</bdi></a></p>
<p dir="auto">If you find some way to do a donation and get a receipt (or something else) please let me know.<br />
I am not interested in haproxy but in squid with SSL filtering.</p>
<p dir="auto">I am working in the public sector and they do not do anything without having a receipt or something else.</p>
]]></description><link>https://forum.netgate.com/post/380319</link><guid isPermaLink="true">https://forum.netgate.com/post/380319</guid><dc:creator><![CDATA[Nachtfalke]]></dc:creator><pubDate>Wed, 20 Feb 2013 19:01:14 GMT</pubDate></item><item><title><![CDATA[Reply to 200$ - Update haproxy to 1.5-dev17 on Wed, 20 Feb 2013 16:52:14 GMT]]></title><description><![CDATA[<p dir="auto">I can help on it but I'm from Brazil, and receive donations as service via paypal.</p>
<p dir="auto">I'll take a look on haproxy 1.5-dev17 and feedback.</p>
]]></description><link>https://forum.netgate.com/post/380285</link><guid isPermaLink="true">https://forum.netgate.com/post/380285</guid><dc:creator><![CDATA[marcelloc]]></dc:creator><pubDate>Wed, 20 Feb 2013 16:52:14 GMT</pubDate></item></channel></rss>