<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Another comparison of HAProxy and Nginx</title>
	<atom:link href="http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/feed/" rel="self" type="application/rss+xml" />
	<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/</link>
	<description></description>
	<lastBuildDate>Mon, 26 Jan 2009 13:35:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ryan</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-43</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Mon, 26 Jan 2009 13:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-43</guid>
		<description>see http://four.livejournal.com/955976.html for another comparison of haproxy and nginx.</description>
		<content:encoded><![CDATA[<p>see <a href="http://four.livejournal.com/955976.html" rel="nofollow">http://four.livejournal.com/955976.html</a> for another comparison of haproxy and nginx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Antonio</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-35</link>
		<dc:creator>José Antonio</dc:creator>
		<pubDate>Sat, 15 Nov 2008 11:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-35</guid>
		<description>&quot;Can HAProxy serve static files though without involving Mongrel?&quot;

-No. but you can configure an ACL filter and move all static request to another server (i.e. ligthttpd, apache, nginx)

 # Static content
    acl url_static path_beg /javascripts /stylesheets /images
    acl url_static path_end .jpg .jpeg .gif .png .ico .pdf .js .css .flv .swf
    acl host_static hdr_beg(host) -i static0. static1. static2. static3.

    use_backend static if host_static or url_static

    # Default to dynamic content
    default_backend dynamic</description>
		<content:encoded><![CDATA[<p>&#8220;Can HAProxy serve static files though without involving Mongrel?&#8221;</p>
<p>-No. but you can configure an ACL filter and move all static request to another server (i.e. ligthttpd, apache, nginx)</p>
<p> # Static content<br />
    acl url_static path_beg /javascripts /stylesheets /images<br />
    acl url_static path_end .jpg .jpeg .gif .png .ico .pdf .js .css .flv .swf<br />
    acl host_static hdr_beg(host) -i static0. static1. static2. static3.</p>
<p>    use_backend static if host_static or url_static</p>
<p>    # Default to dynamic content<br />
    default_backend dynamic</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-34</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Mon, 27 Oct 2008 21:44:17 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-34</guid>
		<description>No. HAProxy is a pure load balancer — it doesn&#039;t know how to map URLs to files. You need a web server such as Nginx or Lighttpd. (I wouldn&#039;t use Mongrel.)</description>
		<content:encoded><![CDATA[<p>No. HAProxy is a pure load balancer — it doesn&#8217;t know how to map URLs to files. You need a web server such as Nginx or Lighttpd. (I wouldn&#8217;t use Mongrel.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy Tiddlekins</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-33</link>
		<dc:creator>Tommy Tiddlekins</dc:creator>
		<pubDate>Mon, 27 Oct 2008 20:03:13 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-33</guid>
		<description>Can HAProxy serve static files though without involving Mongrel?</description>
		<content:encoded><![CDATA[<p>Can HAProxy serve static files though without involving Mongrel?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daeltar</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-31</link>
		<dc:creator>daeltar</dc:creator>
		<pubDate>Wed, 20 Aug 2008 23:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-31</guid>
		<description>@Alexander - sorry - I have read it in previous article after this one.</description>
		<content:encoded><![CDATA[<p>@Alexander &#8211; sorry &#8211; I have read it in previous article after this one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-30</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Wed, 20 Aug 2008 21:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-30</guid>
		<description>@Morten: So serve them with Nginx and proxy back into HAProxy.

@daeltar: This comparison &lt;i&gt;is&lt;/i&gt; with the fair proxy module.</description>
		<content:encoded><![CDATA[<p>@Morten: So serve them with Nginx and proxy back into HAProxy.</p>
<p>@daeltar: This comparison <i>is</i> with the fair proxy module.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daeltar</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-29</link>
		<dc:creator>daeltar</dc:creator>
		<pubDate>Wed, 20 Aug 2008 21:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-29</guid>
		<description>Interesting comparsion. Do you think that Nginx with fair proxy module will have similar results as HAproxy?</description>
		<content:encoded><![CDATA[<p>Interesting comparsion. Do you think that Nginx with fair proxy module will have similar results as HAproxy?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morten</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-28</link>
		<dc:creator>Morten</dc:creator>
		<pubDate>Tue, 19 Aug 2008 14:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-28</guid>
		<description>Nginx to serve files, doing that in Rails would be unhealthy - google rails send_file mem</description>
		<content:encoded><![CDATA[<p>Nginx to serve files, doing that in Rails would be unhealthy &#8211; google rails send_file mem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-27</link>
		<dc:creator>Alexander</dc:creator>
		<pubDate>Sat, 16 Aug 2008 17:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-27</guid>
		<description>Rails can accept/emit the appropriate authentication headers. Why involve Nginx?</description>
		<content:encoded><![CDATA[<p>Rails can accept/emit the appropriate authentication headers. Why involve Nginx?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morten</title>
		<link>http://affectioncode.wordpress.com/2008/06/28/another-comparison-of-haproxy-and-nginx/#comment-25</link>
		<dc:creator>Morten</dc:creator>
		<pubDate>Wed, 13 Aug 2008 10:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://affectioncode.wordpress.com/?p=29#comment-25</guid>
		<description>How would you handle serving files that require authentication (via the Rails app) in such a setup? Allow nginx to also call Rails for authentication which then returns the X-Accel-Redirect for nginx?</description>
		<content:encoded><![CDATA[<p>How would you handle serving files that require authentication (via the Rails app) in such a setup? Allow nginx to also call Rails for authentication which then returns the X-Accel-Redirect for nginx?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
