<?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[Anyone Using Pound load balancing]]></title><description><![CDATA[<p dir="auto">Has anyone had success using Pound to filter between back end servers? We are using Pound to redirect users from common entry server to the appropriate back-end server based on the URl header. It works well and fast however some dashboards will not fully render and Pound  complains headers: request URI too long.  It appears the maxbuffer setting in Pound is too low and the request is being truncated.  The fix requires re-configuring and recompiling the program with an increased maxbuffer param but as yet have not been able to get the fix working.</p>
]]></description><link>https://forum.mango-os.com/topic/3516/anyone-using-pound-load-balancing</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 12:24:25 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/3516.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 22 May 2018 17:38:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Anyone Using Pound load balancing on Wed, 23 May 2018 17:09:14 GMT]]></title><description><![CDATA[<p dir="auto">Nginx might also do what you want and may be simpler depending on how you set it up.</p>
<p dir="auto">You can also pretty easily adjust headers on Nginx (if needed)<br />
R</p>
]]></description><link>https://forum.mango-os.com/post/18561</link><guid isPermaLink="true">https://forum.mango-os.com/post/18561</guid><dc:creator><![CDATA[rshah]]></dc:creator><pubDate>Wed, 23 May 2018 17:09:14 GMT</pubDate></item><item><title><![CDATA[Reply to Anyone Using Pound load balancing on Wed, 23 May 2018 19:44:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/phillip-weeks" aria-label="Profile: phillip-weeks">@<bdi>phillip-weeks</bdi></a> said in <a href="/post/18551">Anyone Using Pound load balancing</a>:</p>
<blockquote>
<p dir="auto">Has anyone had success using Pound to filter between back end servers?</p>
</blockquote>
<p dir="auto">Sorry no,<br />
I used mod_proxy with Apache for my configuration. Allowed me to use letsEncrypt SSL certs. Haven't had any major issues. Dunno if that would help accomplish what you're trying to do or you need Pound because it provides load balancing and the like...</p>
<p dir="auto">Good Luck</p>
<p dir="auto">Fox</p>
<p dir="auto">Edit: Found this little nugget of info that might help you with redirecting...</p>
<pre><code>A little further down the RewriteCond document:

%{HTTP:header}, where header can be any HTTP MIME-header name

So, you can do it, just not in quite the same form as the pre-extracted headers.

Try this:

RewriteCond %{HTTP:X-Forwarded-Port} !=443
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
</code></pre>
<p dir="auto">Credit goes to shane madden on Server Fault</p>
]]></description><link>https://forum.mango-os.com/post/18552</link><guid isPermaLink="true">https://forum.mango-os.com/post/18552</guid><dc:creator><![CDATA[MattFox]]></dc:creator><pubDate>Wed, 23 May 2018 19:44:10 GMT</pubDate></item></channel></rss>