<?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"
	>
<channel>
	<title>Comments for Sameer Parwani</title>
	<atom:link href="http://sameerparwani.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://sameerparwani.com</link>
	<description>Ramblings from a Web Developer</description>
	<pubDate>Wed, 10 Mar 2010 11:22:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on Recursive FTP Make Directory (mkdir) by Subodh D. Choure</title>
		<link>http://sameerparwani.com/posts/recursive-ftp-make-directory-mkdir#comment-539</link>
		<dc:creator>Subodh D. Choure</dc:creator>
		<pubDate>Fri, 05 Mar 2010 10:02:12 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=227#comment-539</guid>
		<description>Your code is really nice. Its helpful and almost ready to copy paste and use.
Thanks !</description>
		<content:encoded><![CDATA[<p>Your code is really nice. Its helpful and almost ready to copy paste and use.<br />
Thanks !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mixing Subversion and APC (for PHP) by Alvaro K.</title>
		<link>http://sameerparwani.com/posts/mixing-subversion-and-apc-for-php#comment-538</link>
		<dc:creator>Alvaro K.</dc:creator>
		<pubDate>Thu, 04 Mar 2010 16:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=13#comment-538</guid>
		<description>This is the fantastic look over for me, Must admit that you'll be probably the greatest bloggers I ever saw.Thank you for writing this informative article.</description>
		<content:encoded><![CDATA[<p>This is the fantastic look over for me, Must admit that you&#8217;ll be probably the greatest bloggers I ever saw.Thank you for writing this informative article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding The Importance of Passing Along Host Names in a Reverse Proxy by web proxy</title>
		<link>http://sameerparwani.com/posts/understanding-the-importance-of-passing-along-host-names-in-a-reverse-proxy#comment-536</link>
		<dc:creator>web proxy</dc:creator>
		<pubDate>Sun, 21 Feb 2010 08:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=257#comment-536</guid>
		<description>Those are new working web proxy servers. They should go passed the filters. I checked all of them and they are fast and reliable. The complete list of them is here: http://anonymouslist.net</description>
		<content:encoded><![CDATA[<p>Those are new working web proxy servers. They should go passed the filters. I checked all of them and they are fast and reliable. The complete list of them is here: <a href="http://anonymouslist.net" rel="nofollow">http://anonymouslist.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Load Balancing with Nginx by Adrian Ruloso</title>
		<link>http://sameerparwani.com/posts/load-balancing-with-nginx#comment-535</link>
		<dc:creator>Adrian Ruloso</dc:creator>
		<pubDate>Wed, 17 Feb 2010 22:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=63#comment-535</guid>
		<description>APACHE (webserver1 and webserver2) has the same conf

VirtualHost *:80
	# Default VirtaulHost
	DocumentRoot /path/to/site-A
	ServerName http://www.mysite-A.com
/VirtualHost

VirtualHost *:80
	DocumentRoot /path/to/site-B
	ServerName http://www.mysite-B.com
/VirtualHost


So, when I request from site mysite-B, the response comes from www.mysite-A.com.
How can I fix the conf, so each request will be answered by each virtualhost?

Thanks, Adrian</description>
		<content:encoded><![CDATA[<p>APACHE (webserver1 and webserver2) has the same conf</p>
<p>VirtualHost *:80<br />
	# Default VirtaulHost<br />
	DocumentRoot /path/to/site-A<br />
	ServerName <a href="http://www.mysite-A.com" rel="nofollow">http://www.mysite-A.com</a><br />
/VirtualHost</p>
<p>VirtualHost *:80<br />
	DocumentRoot /path/to/site-B<br />
	ServerName <a href="http://www.mysite-B.com" rel="nofollow">http://www.mysite-B.com</a><br />
/VirtualHost</p>
<p>So, when I request from site mysite-B, the response comes from <a href="http://www.mysite-A.com" rel="nofollow">http://www.mysite-A.com</a>.<br />
How can I fix the conf, so each request will be answered by each virtualhost?</p>
<p>Thanks, Adrian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Load Balancing with Nginx by Adrian Ruloso</title>
		<link>http://sameerparwani.com/posts/load-balancing-with-nginx#comment-534</link>
		<dc:creator>Adrian Ruloso</dc:creator>
		<pubDate>Wed, 17 Feb 2010 22:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=63#comment-534</guid>
		<description>Hi, I´m trying to use a load balancer across multiple websites in 2 servers (multiple apache virtual servers), but i'm not able to get the right conf. All request are sent from nginx to default apache virtualhost and not each virtualhost.

Here is my conf:

NGINX

upstream  pool_ws  {
	server   webserver1;
	server   webserver2;
}

server {
	server_name www.mysite-A.com;
	location / {
		proxy_pass  http://pool_ws;
	}
}

server {
	server_name www.mysite-B.com;
	location / {
		proxy_pass  http://pool_ws;
	}
}</description>
		<content:encoded><![CDATA[<p>Hi, I´m trying to use a load balancer across multiple websites in 2 servers (multiple apache virtual servers), but i&#8217;m not able to get the right conf. All request are sent from nginx to default apache virtualhost and not each virtualhost.</p>
<p>Here is my conf:</p>
<p>NGINX</p>
<p>upstream  pool_ws  {<br />
	server   webserver1;<br />
	server   webserver2;<br />
}</p>
<p>server {<br />
	server_name <a href="http://www.mysite-A.com" rel="nofollow">http://www.mysite-A.com</a>;<br />
	location / {<br />
		proxy_pass  <a href="http://pool_ws" rel="nofollow">http://pool_ws</a>;<br />
	}<br />
}</p>
<p>server {<br />
	server_name <a href="http://www.mysite-B.com" rel="nofollow">http://www.mysite-B.com</a>;<br />
	location / {<br />
		proxy_pass  <a href="http://pool_ws" rel="nofollow">http://pool_ws</a>;<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Elgg Scalability by Peter</title>
		<link>http://sameerparwani.com/posts/elgg-scalability#comment-529</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Wed, 13 Jan 2010 09:14:40 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=93#comment-529</guid>
		<description>Many off the shelf social networks (and scripts in general) are built for convenience and ease of customization rather than optimization so it's always going to be a compromise of speed over flexibility. One of the downsides of open source software like Elgg is that it's maintained by a team of enthusiasts, not a business. This is evident in the long development cycles, no adherence to deadlines and lack of urgency in fixing bugs.</description>
		<content:encoded><![CDATA[<p>Many off the shelf social networks (and scripts in general) are built for convenience and ease of customization rather than optimization so it&#8217;s always going to be a compromise of speed over flexibility. One of the downsides of open source software like Elgg is that it&#8217;s maintained by a team of enthusiasts, not a business. This is evident in the long development cycles, no adherence to deadlines and lack of urgency in fixing bugs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Scribe Server Documentation And Tutorials by Gautam Roy</title>
		<link>http://sameerparwani.com/posts/facebook-scribe-server-documentation-and-tutorials#comment-527</link>
		<dc:creator>Gautam Roy</dc:creator>
		<pubDate>Wed, 23 Dec 2009 20:32:27 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=166#comment-527</guid>
		<description>Another helpful link about scribe design would be the facebook techtalk video 
http://www.facebook.com/video/video.php?v=650882334523&#38;ref=mf</description>
		<content:encoded><![CDATA[<p>Another helpful link about scribe design would be the facebook techtalk video<br />
<a href="http://www.facebook.com/video/video.php?v=650882334523&amp;ref=mf" rel="nofollow">http://www.facebook.com/video/video.php?v=650882334523&amp;ref=mf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Handling Sessions with MySQL by Johan Pratama</title>
		<link>http://sameerparwani.com/posts/handling-sessions-with-mysql#comment-526</link>
		<dc:creator>Johan Pratama</dc:creator>
		<pubDate>Tue, 08 Dec 2009 12:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=75#comment-526</guid>
		<description>Hai sameer,
Can you teach me how to handle session using postgresql?</description>
		<content:encoded><![CDATA[<p>Hai sameer,<br />
Can you teach me how to handle session using postgresql?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Load Balancing with Nginx by Johan Pratama</title>
		<link>http://sameerparwani.com/posts/load-balancing-with-nginx#comment-525</link>
		<dc:creator>Johan Pratama</dc:creator>
		<pubDate>Tue, 08 Dec 2009 10:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=63#comment-525</guid>
		<description>Thank you Sameer, good tutorial...</description>
		<content:encoded><![CDATA[<p>Thank you Sameer, good tutorial&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Scribe Server Documentation And Tutorials by Kim</title>
		<link>http://sameerparwani.com/posts/facebook-scribe-server-documentation-and-tutorials#comment-524</link>
		<dc:creator>Kim</dc:creator>
		<pubDate>Mon, 30 Nov 2009 19:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://sameerparwani.com/?p=166#comment-524</guid>
		<description>"Chukwa is an open source data collection system for monitoring large distributed systems."

http://hadoop.apache.org/chukwa/

My team is trying to decide between Scribe and Chukwa.</description>
		<content:encoded><![CDATA[<p>&#8220;Chukwa is an open source data collection system for monitoring large distributed systems.&#8221;</p>
<p><a href="http://hadoop.apache.org/chukwa/" rel="nofollow">http://hadoop.apache.org/chukwa/</a></p>
<p>My team is trying to decide between Scribe and Chukwa.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
