<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>system reboot! &#187; nginx</title>
	<atom:link href="http://ibnuyahya.com/tag/nginx/feed/" rel="self" type="application/rss+xml" />
	<link>http://ibnuyahya.com</link>
	<description>echo help::answer($question)</description>
	<lastBuildDate>Wed, 25 Apr 2012 09:31:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Installing nginx on mac osx</title>
		<link>http://ibnuyahya.com/installing-nginx-on-mac-osx/</link>
		<comments>http://ibnuyahya.com/installing-nginx-on-mac-osx/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 12:54:49 +0000</pubDate>
		<dc:creator>ibnuyahya</dc:creator>
				<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://ibnuyahya.com/?p=730</guid>
		<description><![CDATA[This time I would like to share with you on how easily to install nginx from source in your mac osx. 1. Download and untar the file curl -O http:// nginx.org/download/nginx-1.1.14.tar.gz tar -xvf nginx-1.1.14.tar.gz make sure no space between http:// and nginx.org 2. enter to nginx directory cd nginx-1.1* 3. run configure and make command [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fibnuyahya.com%2Finstalling-nginx-on-mac-osx%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe></div>
					<div style="float:left; width:50px; padding-left:10px;" class="really_simple_share_facebook_like_send">
					<fb:send href="http://ibnuyahya.com/installing-nginx-on-mac-osx/" font=""></fb:send></div><div class="really_simple_share_google1" style="width:80px;"><div class="g-plusone" data-size="medium" data-href="http://ibnuyahya.com/installing-nginx-on-mac-osx/" ></div></div><div class="really_simple_share_twitter" style="width:100px;"><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Installing nginx on mac osx" data-url="http://ibnuyahya.com/installing-nginx-on-mac-osx/" 
						data-via=""  ></a></div><div class="really_simple_share_linkedin" style="width:100px;"><script type="IN/Share" data-counter="right" data-url="http://ibnuyahya.com/installing-nginx-on-mac-osx/"></script></div><div class="really_simple_share_digg" style="width:100px;"><script type="text/javascript" src="http://widgets.digg.com/buttons.js"></script>
					<a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http://ibnuyahya.com/installing-nginx-on-mac-osx/&amp;title=Installing nginx on mac osx"></a></div></div>
		<div style="clear:both;"></div><p>This time I would like to share with you on how easily to install nginx from source in your mac osx.</p>
<p>1. Download and untar the file</p>
<pre class="brush:bash">
curl -O http:// nginx.org/download/nginx-1.1.14.tar.gz
tar -xvf nginx-1.1.14.tar.gz
</pre>
<p><strong><em>make sure no space between http:// and nginx.org</em></strong></p>
<p><span id="more-730"></span><br />
2. enter to nginx directory</p>
<pre class="brush:bash">
cd nginx-1.1*
</pre>
<p>3. run configure and make command</p>
<pre class="brush:bash">
./configure
make
sudo make install
</pre>
<p>4. DONE<br />
by default, nginx is installed in the </p>
<pre class="brush:bash">
/usr/local/nginx
</pre>
<h2>Start nginx</h2>
<pre class="brush:bash">
sudo /usr/local/nginx/sbin/nginx
</pre>
<h2>Stop nginx</h2>
<pre class="brush:bash">
sudo /usr/local/nginx/sbin/nginx -s stop
</pre>
<h2>Graceful Stop nginx</h2>
<pre class="brush:bash">
sudo /usr/local/nginx/sbin/nginx -s stop
</pre>
<h2>Reload nginx configuration</h2>
<p>changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes</p>
<pre class="brush:bash">
sudo /usr/local/nginx/sbin/nginx -s reload
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ibnuyahya.com/installing-nginx-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>installing nginx geoip ubuntu server</title>
		<link>http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/</link>
		<comments>http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 13:54:32 +0000</pubDate>
		<dc:creator>ibnuyahya</dc:creator>
				<category><![CDATA[nginx]]></category>
		<category><![CDATA[geoip]]></category>

		<guid isPermaLink="false">http://ibnuyahya.com/?p=701</guid>
		<description><![CDATA[installing geoip is pretty easy but sometime its a bit tricky. To ensure I&#8217;m not going to the same mistake, I do the following notes. Perhaps can help those facing same tricky mistake. 1. Install libgeoip-dev aptitude install libgeoip-dev 2. Compile your nginx and include &#8211;with-http_geoip_module ./configure --with-http_geoip_module Verify your nginx installation by typing nginx -V [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fibnuyahya.com%2Finstalling-nginx-geoip-ubuntu-server%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe></div>
					<div style="float:left; width:50px; padding-left:10px;" class="really_simple_share_facebook_like_send">
					<fb:send href="http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/" font=""></fb:send></div><div class="really_simple_share_google1" style="width:80px;"><div class="g-plusone" data-size="medium" data-href="http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/" ></div></div><div class="really_simple_share_twitter" style="width:100px;"><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="installing nginx geoip ubuntu server" data-url="http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/" 
						data-via=""  ></a></div><div class="really_simple_share_linkedin" style="width:100px;"><script type="IN/Share" data-counter="right" data-url="http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/"></script></div><div class="really_simple_share_digg" style="width:100px;"><script type="text/javascript" src="http://widgets.digg.com/buttons.js"></script>
					<a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/&amp;title=installing nginx geoip ubuntu server"></a></div></div>
		<div style="clear:both;"></div><p>installing geoip is pretty easy but sometime its a bit tricky. To ensure I&#8217;m not going to the same mistake, I do the following notes. Perhaps can help those facing same tricky mistake.</p>
<p>1. Install <strong>libgeoip-dev</strong></p>
<pre class="brush:bash">aptitude install libgeoip-dev</pre>
<p>2. Compile your nginx and include <strong>&#8211;with-http_geoip_module</strong></p>
<pre class="brush:bash">./configure --with-http_geoip_module</pre>
<p>Verify your nginx installation by typing</p>
<pre class="brush:bash">nginx -V</pre>
<p>Watch <strong>&#8211;with-http_geoip_module</strong> . If you can see <strong>&#8211;with-http_geoip_module</strong> in your<strong> nginx -V</strong> result, thats mean geoip module successfully installed.<br />
<span id="more-701"></span><br />
3. Create geoip directory in your nginx directory, <strong>/etc/nginx/geoip</strong></p>
<pre class="brush:bash">cd /etc/nginx
sudo mkdir geoip
cd geoip</pre>
<p>4. Download geoip data and extract</p>
<pre class="brush:bash">sudo wget http:// geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
sudo wget http:// geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
sudo gunzip GeoIP.dat.gz
sudo gunzip GeoLiteCity.dat.gz</pre>
<p>5. Edit you <strong>nginx.conf</strong></p>
<pre class="brush:bash">sudo nano /etc/nginx/nginx.conf</pre>
<p>and add the following code</p>
<pre class="brush:bash">http{
...
geoip_country /etc/nginx/geoip/GeoIP.dat;
geoip_city /etc/nginx/geoip/GeoLiteCity.dat;
...</pre>
<p>6. Edit fastcgi_params</p>
<pre class="brush:bash">sudo nano /etc/nginx/fastcgi_params</pre>
<p>and add the following code</p>
<pre class="brush:bash">  fastcgi_param GEOIP_CITY_COUNTRY_CODE $geoip_city_country_code;
  fastcgi_param GEOIP_CITY_COUNTRY_CODE3 $geoip_city_country_code3;
  fastcgi_param GEOIP_CITY_COUNTRY_NAME $geoip_city_country_name;
  fastcgi_param GEOIP_REGION $geoip_region;
  fastcgi_param GEOIP_CITY $geoip_city;
  fastcgi_param GEOIP_POSTAL_CODE $geoip_postal_code;
  fastcgi_param GEOIP_CITY_CONTINENT_CODE $geoip_city_continent_code;
  fastcgi_param GEOIP_LATITUDE $geoip_latitude;
  fastcgi_param GEOIP_LONGITUDE $geoip_longitude;</pre>
<p>7. Make sure you have this line of code include <strong>/etc/nginx/fastcgi_params;</strong> in your <strong>location ~ \.php$ {}</strong></p>
<pre class="brush:bash">sudo nano /etc/nginx/sites-available/default</pre>
<pre class="brush:bash">...
location ~ \.php$ {
...
include /etc/nginx/fastcgi_params;
..
}</pre>
<p>8. Restart nginx</p>
<pre class="brush:bash">sudo /etc/init.d/nginx restart</pre>
]]></content:encoded>
			<wfw:commentRss>http://ibnuyahya.com/installing-nginx-geoip-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx HTTP Server book give away</title>
		<link>http://ibnuyahya.com/nginx-http-server-book-give-away/</link>
		<comments>http://ibnuyahya.com/nginx-http-server-book-give-away/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 09:31:11 +0000</pubDate>
		<dc:creator>ibnuyahya</dc:creator>
				<category><![CDATA[nginx]]></category>
		<category><![CDATA[contest]]></category>

		<guid isPermaLink="false">http://ibnuyahya.com/?p=551</guid>
		<description><![CDATA[Saya ingin memberi buku ini secara percuma. Syarat-syaratnya mudah sahaja. Anda mestilah menetap di Malaysia. Klik facebook like pada page ini. ( mudah saja kan ) Tinggalkan komen anda disini. Pastikan anda masukkan alamat email anda. Apakah jenis webserver dan version yang digunakan di laman http://ibnuyahya.com Pemenang akan diumumkan pada Khamis, 29 Dec 2011 Jam [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fibnuyahya.com%2Fnginx-http-server-book-give-away%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe></div>
					<div style="float:left; width:50px; padding-left:10px;" class="really_simple_share_facebook_like_send">
					<fb:send href="http://ibnuyahya.com/nginx-http-server-book-give-away/" font=""></fb:send></div><div class="really_simple_share_google1" style="width:80px;"><div class="g-plusone" data-size="medium" data-href="http://ibnuyahya.com/nginx-http-server-book-give-away/" ></div></div><div class="really_simple_share_twitter" style="width:100px;"><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Nginx HTTP Server book give away" data-url="http://ibnuyahya.com/nginx-http-server-book-give-away/" 
						data-via=""  ></a></div><div class="really_simple_share_linkedin" style="width:100px;"><script type="IN/Share" data-counter="right" data-url="http://ibnuyahya.com/nginx-http-server-book-give-away/"></script></div><div class="really_simple_share_digg" style="width:100px;"><script type="text/javascript" src="http://widgets.digg.com/buttons.js"></script>
					<a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http://ibnuyahya.com/nginx-http-server-book-give-away/&amp;title=Nginx HTTP Server book give away"></a></div></div>
		<div style="clear:both;"></div><p><img src="http://lh6.googleusercontent.com/-qNAYWPXLs_4/TvsYcFAqHYI/AAAAAAAAAh0/MCo5axB_yjM/s123/nginx.png" alt="Nginx http server" /></p>
<p>Saya ingin memberi buku ini secara percuma. Syarat-syaratnya mudah sahaja.</p>
<ol>
<li>Anda mestilah menetap di Malaysia.</li>
<li>Klik <a  target="_blank"  rel="nofollow"  href="http://samsengfb.jomniaga.com/go/ibnuyahya?tid=web">facebook</a> like pada page ini. ( mudah saja kan )</li>
<li>Tinggalkan komen anda disini. Pastikan anda masukkan alamat email anda.</li>
<li>Apakah jenis webserver dan version yang digunakan di laman <a href="http://ibnuyahya.com" rel="nofollow">http://ibnuyahya.com</a></li>
</ol>
<p><span style="color: #ff0000;">Pemenang akan diumumkan pada Khamis, 29 Dec 2011 Jam 8 malam. * Pemenang dipilih secara random dari komen-komen di bawah. ;P</span></p>
<p><span style="color: #339966;"><strong>Update : 29/12/2011 8.00pm</strong></span><br />
<span style="color: #339966;"><strong> ramdom.org memilih <span style="text-decoration: underline; color: #3366ff;">Azim Norazmi</span> sebagai pemilik buku ini. Sila hantar alamat anda ke ibnuyahya at gmail.com</strong></span></p>
<p>yang lain jangan bersedih ye. ada buku lebih nanti kita buat give away lagi. <img src="http://ibnuyahya.com/wp-includes/images/smilies/icon_smile.gif?9d7bd4" alt=':)' class='wp-smiley' /> </p>
<p><img src="http://www.packtpub.com/sites/default/files/0868OS_MockupCover.jpg" alt="Nginx http server" /></p>
<div id="jomniaga_related_site"><h2>Related Sites</h2><ul><li><a href="http://samsengfb.jomniaga.com/go/ibnuyahya?tid=web" target="_blank">Samseng Facebook - Sistem Trafik Percuma FaceBook!</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ibnuyahya.com/nginx-http-server-book-give-away/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Setting Nginx dan WordPress</title>
		<link>http://ibnuyahya.com/setting-nginx-dan-wordpress/</link>
		<comments>http://ibnuyahya.com/setting-nginx-dan-wordpress/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 12:42:49 +0000</pubDate>
		<dc:creator>ibnuyahya</dc:creator>
				<category><![CDATA[nginx]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ibnuyahya.com/?p=524</guid>
		<description><![CDATA[Berikut adalah nginx configuration untuk WordPress dengan permalink. # Upstream to abstract backend connection(s) for php upstream php { server unix:/tmp/php-cgi.socket; server 127.0.0.1:9000; } server { ## Your website name goes here. server_name domain.tld; ## Your only path reference. root /var/www/wordpress; ## This should be in your http block and if it is, it's not [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fibnuyahya.com%2Fsetting-nginx-dan-wordpress%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe></div>
					<div style="float:left; width:50px; padding-left:10px;" class="really_simple_share_facebook_like_send">
					<fb:send href="http://ibnuyahya.com/setting-nginx-dan-wordpress/" font=""></fb:send></div><div class="really_simple_share_google1" style="width:80px;"><div class="g-plusone" data-size="medium" data-href="http://ibnuyahya.com/setting-nginx-dan-wordpress/" ></div></div><div class="really_simple_share_twitter" style="width:100px;"><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="Setting Nginx dan WordPress" data-url="http://ibnuyahya.com/setting-nginx-dan-wordpress/" 
						data-via=""  ></a></div><div class="really_simple_share_linkedin" style="width:100px;"><script type="IN/Share" data-counter="right" data-url="http://ibnuyahya.com/setting-nginx-dan-wordpress/"></script></div><div class="really_simple_share_digg" style="width:100px;"><script type="text/javascript" src="http://widgets.digg.com/buttons.js"></script>
					<a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http://ibnuyahya.com/setting-nginx-dan-wordpress/&amp;title=Setting Nginx dan WordPress"></a></div></div>
		<div style="clear:both;"></div><p>Berikut adalah nginx configuration untuk <a  target="_blank"  rel="nofollow"  href="http://amirul.jomniaga.com/go/ibnuyahya?tid=web">WordPress</a> dengan permalink.</p>
<pre class="brush:bash">
# Upstream to abstract backend connection(s) for php
upstream php {
        server unix:/tmp/php-cgi.socket;
        server 127.0.0.1:9000;
}

server {
        ## Your website name goes here.
        server_name <a  target="_blank"  rel="nofollow"  href="http://zuljamil.jomniaga.com/go/ibnuyahya?tid=web">domain</a>.tld;
        ## Your only path reference.
        root /var/www/<a  target="_blank"  rel="nofollow"  href="http://amirul.jomniaga.com/go/ibnuyahya?tid=web">wordpress</a>;
        ## This should be in your http block and if it is, it's not needed here.
        index index.php;

        location = /favicon.ico {
                log_not_found off;
                access_log off;
        }

        location = /robots.txt {
                allow all;
                log_not_found off;
                access_log off;
        }

        location / {
                # This is cool because no php is touched for static content
                try_files $uri $uri/ /index.php;
        }

        location ~ \.php$ {
                #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
                include fastcgi.conf;
                fastcgi_intercept_errors on;
                fastcgi_pass php;
        }

        location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
                expires max;
                log_not_found off;
        }
}
</pre>
<div id="jomniaga_related_site"><h2>Related Sites</h2><ul><li><a href="http://zuljamil.jomniaga.com/go/ibnuyahya?tid=web" target="_blank">Jutawan Domain - Rahsia Buat Duit Dengan Domain Name</a></li><li><a href="http://amirul.jomniaga.com/go/ibnuyahya?tid=web" target="_blank">Panduan eShop - Buat Blogshop Dengan WordPress</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ibnuyahya.com/setting-nginx-dan-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m running on nginx</title>
		<link>http://ibnuyahya.com/im-running-on-nginx-2/</link>
		<comments>http://ibnuyahya.com/im-running-on-nginx-2/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 14:33:44 +0000</pubDate>
		<dc:creator>ibnuyahya</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[nginx]]></category>

		<guid isPermaLink="false">http://ibnuyahya.com/?p=473</guid>
		<description><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut scelerisque ligula nec neque dictum eget dictum leo pulvinar. Maecenas id orci id leo ornare bibendum. Donec et ante mi. Aliquam ullamcorper volutpat purus, vitae eleifend eros pharetra sit amet. Nulla porta adipiscing mi vel ultricies. Aliquam varius, eros eu congue hendrerit, augue nunc egestas odio, [...]]]></description>
			<content:encoded><![CDATA[<div style="height:33px;" class="really_simple_share robots-nocontent snap_nopreview"><div class="really_simple_share_facebook_like" style="width:100px;"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fibnuyahya.com%2Fim-running-on-nginx-2%2F&amp;layout=button_count&amp;show_faces=false&amp;width=&amp;action=like&amp;colorscheme=light&amp;send=false&amp;height=27" 
						scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:px; height:27px;" allowTransparency="true"></iframe></div>
					<div style="float:left; width:50px; padding-left:10px;" class="really_simple_share_facebook_like_send">
					<fb:send href="http://ibnuyahya.com/im-running-on-nginx-2/" font=""></fb:send></div><div class="really_simple_share_google1" style="width:80px;"><div class="g-plusone" data-size="medium" data-href="http://ibnuyahya.com/im-running-on-nginx-2/" ></div></div><div class="really_simple_share_twitter" style="width:100px;"><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" 
						data-text="I&#8217;m running on nginx" data-url="http://ibnuyahya.com/im-running-on-nginx-2/" 
						data-via=""  ></a></div><div class="really_simple_share_linkedin" style="width:100px;"><script type="IN/Share" data-counter="right" data-url="http://ibnuyahya.com/im-running-on-nginx-2/"></script></div><div class="really_simple_share_digg" style="width:100px;"><script type="text/javascript" src="http://widgets.digg.com/buttons.js"></script>
					<a class="DiggThisButton DiggCompact" href="http://digg.com/submit?url=http://ibnuyahya.com/im-running-on-nginx-2/&amp;title=I&amp;#8217;m running on nginx"></a></div></div>
		<div style="clear:both;"></div><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut scelerisque ligula nec neque dictum eget dictum leo pulvinar. Maecenas id orci id leo ornare bibendum. Donec et ante mi. Aliquam ullamcorper volutpat purus, vitae eleifend eros pharetra sit amet. Nulla porta adipiscing mi vel ultricies. Aliquam varius, eros eu congue hendrerit, augue nunc egestas odio, et rutrum nisi ante eget enim. Nullam interdum turpis vitae ipsum iaculis non rutrum nisi condimentum. Cras iaculis pharetra vulputate.</p>
]]></content:encoded>
			<wfw:commentRss>http://ibnuyahya.com/im-running-on-nginx-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Page Caching using apc
Database Caching 36/38 queries in 0.003 seconds using apc
Object Caching 711/711 objects using apc

Served from: _ @ 2012-05-20 05:38:55 -->
