<?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>skyrider.biz &#187; Server Administration</title>
	<atom:link href="http://www.skyrider.biz/category/server-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skyrider.biz</link>
	<description>Fun, Entertainment, Blog, IT, Open Source, Linux, Windows, Antivirus, Malware, Webhosting, Webdesign</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:52:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Using nginx to accelerate Apache on Cpanel server</title>
		<link>http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/</link>
		<comments>http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 23:27:15 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>
		<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=14523</guid>
		<description><![CDATA[Nginx - the small, lightning fast and very efficient web server is usually used to serve static content or as a reverse proxy/load balancer for the Apache or other relatively slow backends. So it would be natural to use nginx as a frontend for Cpanel&#8217;s Apache. It would save a substantial amount of memory and CPU<a class="rmore" href="http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nginx.net/" target="_blank">Nginx</a> - the small, lightning fast and very efficient web server is usually used to serve static content or as a reverse proxy/load balancer for the Apache or other relatively slow backends. So it would be natural to use nginx as a frontend for Cpanel&#8217;s Apache. It would save a substantial amount of memory and CPU time usually sucked by the numerous Apache children spoonfeeding content to the clients.</p>
<p>I always had this in mind, but until recently had no time to look closely at implementing it. Then I saw a forum post with a sample script for generating the nginx configuration file based on Cpanel account info, and then an onslaught of visitors on a shared Cpanel server I admin slowed it to a crawl, and I was forced to delve into the innards of Cpanel. As a result of this investigation I wrote the &#8220;nginx on Cpanel&#8221; HOWTO presented below.</p>
<hr />
<p>&nbsp;</p>
<h3>Installing Apache module</h3>
<p>First of all, when nginx is used as a reverse proxy to Apache, the visitors&#8217; IPs received by Apache are wrong &#8211; all requests to Apache come from nginx, so the main server IP will be logged.<br />
To make Apache log the real IPs of the visitors instead of the main server IP, a special Apache module (<a href="http://stderr.net/apache/rpaf/" target="_blank">mod_rpaf</a>) is needed.<br />
Download, untar, cd to the newly created directory and run this command as root:<br />
<strong>/usr/local/apache/bin/apxs -i -c -n mod_rpaf-2.0.so mod_rpaf-2.0.c</strong><br />
That will install the module into the Apache module directory.</p>
<p>Then go to WHM, <strong>Main &gt;&gt; Service Configuration &gt;&gt; Apache Configuration &gt; Include Editor &gt; Pre Main Include</strong> and add this section there, replacing <strong>LIST_OF_YOUR_IPS</strong> with the list of IP addresses managed by Cpanel:</p>
<fieldset>
<pre>LoadModule rpaf_module modules/mod_rpaf-2.0.so 

RPAFenable On
# Enable reverse proxy add forward
RPAFproxy_ips 127.0.0.1 <strong>LIST_OF_YOUR_IPS</strong>
# which ips are forwarding requests to us
RPAFsethostname On
# let rpaf update vhost settings
# allows to have the same hostnames as in the "real"
# configuration for the forwarding Apache
RPAFheader X-Real-IP
# Allows you to change which header mod_rpaf looks
# for when trying to find the ip the that is forwarding
# our requests</pre>
</fieldset>
<h3>Apache configuration changes</h3>
<p>Then we need to move Apache to another port, let&#8217;s take 81 for example. You can simply edit it in the &#8220;Tweak Settings&#8221; page in WHM, replacing <em>0.0.0.0:80</em> with <em>0.0.0.0:81</em> or, doing it command line way, edit <strong>/var/cpanel/cpanel.config</strong> and change port 80 in <em>apache_port</em> assignment to 81:</p>
<pre>apache_port=0.0.0.0:81</pre>
<p>Run <strong>/usr/local/cpanel/whostmgr/bin/whostmgr2 &#8211;updatetweaksettings</strong> as advised at the top of that file.<br />
Check <strong>/usr/local/apache/conf/httpd.conf</strong> for any occurences of port 80, and run <strong>/scripts/rebuildhttpdconf</strong> to make sure httpd.conf is up to date.</p>
<p>It also makes sense to reduce the number of Apache children, as nginx will take care of spoonfeeding the data to the clients connecting via the slow network links, freeing Apache children to do their backend work. Edit<strong>/usr/local/apache/conf/httpd.conf</strong> and replace <em>prefork.c</em> section with this (note that I used very modest values here, and your mileage may vary):</p>
<fieldset>
<pre>&lt;IfModule prefork.c&gt;
    StartServers 5
    MinSpareServers 2
    MaxSpareServers 5
    MaxClients 50
    MaxRequestsPerChild 0
&lt;/IfModule&gt;</pre>
</fieldset>
<p>Run <strong>/usr/local/cpanel/bin/apache_conf_distiller &#8211;update &#8211;main</strong> to pick up the changes, and then<strong>/scripts/rebuildhttpdconf</strong> to make sure your changes are in.<br />
Note that you will need to watch Apache extended server status at the peak load times to have an idea how many Apache children your server needs by default.</p>
<p>You&#8217;ll also need to update the Apache port in <strong>/etc/chkserv.d/httpd</strong> and restart chksrvd with <strong>/etc/init.d/chksrvd restart</strong></p>
<h3>Generating nginx config files</h3>
<p>The final step &#8211; we have to build the nginx config file based on the domains hosted on your server.<br />
It is done by the simple script which will generate two configuration files for nginx &#8211; main one here:<strong>/usr/local/nginx/conf/nginx.conf</strong> and the include file with all virtual hosts: <strong>/usr/local/nginx/conf/vhost.conf</strong></p>
<fieldset>
<pre>#!/bin/sh

cat &gt; "/usr/local/nginx/conf/nginx.conf" &lt;&lt;EOF
user  nobody;
# no need for more workers in the proxy mode
worker_processes  1;

error_log  logs/error.log info;

worker_rlimit_nofile  8192;

events {
 worker_connections  512; # increase for more busy servers
 use rtsig; # you should use epoll here for Linux kernels 2.6.x
}

http {
 server_names_hash_max_size 2048;

 include    mime.types;
 default_type  application/octet-stream;

 sendfile on;
 tcp_nopush on;
 tcp_nodelay on;

 keepalive_timeout  10;

 gzip on;
 gzip_min_length  1100;
 gzip_buffers  4 32k;
 gzip_types    text/plain text/html application/x-javascript text/xml text/css;
 ignore_invalid_headers on;

 client_header_timeout  3m;
 client_body_timeout 3m;
 send_timeout     3m;
 connection_pool_size  256;
 client_header_buffer_size 4k;
 large_client_header_buffers 4 32k;
 request_pool_size  4k;
 output_buffers   4 32k;
 postpone_output  1460;

 include "/usr/local/nginx/conf/vhost.conf";
}

EOF

/bin/cp /dev/null /usr/local/nginx/conf/vhost.conf

cd /var/cpanel/users
for USER in *; do
 for DOMAIN in `cat $USER | grep ^DNS | cut -d= -f2`; do
  IP=`cat $USER|grep ^IP|cut -d= -f2`;
  ROOT=`grep ^$USER: /etc/passwd|cut -d: -f6`;
  echo "Converting $DOMAIN for $USER";

  cat &gt;&gt; "/usr/local/nginx/conf/vhost.conf" &lt;&lt;EOF
   server {
  access_log off;

  error_log  logs/vhost-error_log warn;
  listen    80;
  server_name  $DOMAIN www.$DOMAIN;

  # uncomment location below to make nginx serve static files instead of Apache
  # !WARNING!
  # it will make the bandwidth accounting incorrect as these files won't be logged!
  #location ~* \.(gif|jpg|jpeg|png|wmv|avi|mpg|mpeg|mp4|htm|html|js|css)$ {
  # root   $ROOT/public_html;
  #}

  location / {
   client_max_body_size    10m;
   client_body_buffer_size 128k;

   proxy_send_timeout   90;
   proxy_read_timeout   90;

   proxy_buffer_size    4k;
   # you can increase proxy_buffers here to suppress "an upstream response
   #  is buffered to a temporary file" warning
   proxy_buffers     16 32k;
   proxy_busy_buffers_size 64k;
   proxy_temp_file_write_size 64k;

   proxy_connect_timeout 30s;

   proxy_redirect  http://www.$DOMAIN:81   http://www.$DOMAIN;
   proxy_redirect  http://$DOMAIN:81   http://$DOMAIN;

   proxy_pass   http://$IP:81/;

   proxy_set_header   Host   \$host;
   proxy_set_header   X-Real-IP  \$remote_addr;
   proxy_set_header   X-Forwarded-For \$proxy_add_x_forwarded_for;
  }
 }
EOF
 done
done</pre>
</fieldset>
<p>Run <strong>/usr/local/nginx/sbin/nginx -t</strong> to check the configuration, and then <strong>/usr/local/nginx/sbin/nginx</strong> to start nginx. You are set!</p>
<p>If you don&#8217;t care about the bandwidth consumed by the virtual hosts and are willing to lose the correct bandwidth calculation over the increased server performance, you can uncomment the &lt;location&gt; lines below the WARNING comment and watch the server picking up the speed. Beware of the two gotchas here: the sub domains most likely will not work as they have document root pointed to a different place, and as nginx doesn&#8217;t support .htaccess files for the performance reasons, they won&#8217;t be obeyed for the file types listed.</p>
<p>Obviously, the config file must be regenerated every time a new domain is added. The deleted and suspended domains should work just fine though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Girls in swimsuits</title>
		<link>http://www.skyrider.biz/girls-in-swimsuits/</link>
		<comments>http://www.skyrider.biz/girls-in-swimsuits/#comments</comments>
		<pubDate>Sun, 01 May 2011 13:44:50 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=12060</guid>
		<description><![CDATA[Soon the summer and will be plenty enough of girls in bathing suits) Well, now let&#8217;s look at the participating parties, which take place in Las Vegas. Such competitions I&#8217;ve only seen in movies. But if I ever find myself in Las Vegas, make sure you&#8217;ll go]]></description>
			<content:encoded><![CDATA[<p><strong><span><span>Soon the summer and will be plenty enough of girls in bathing suits)</span></span><br />
<span><span>Well, now let&#8217;s look at the participating parties, which take place in Las Vegas.</span></span><br />
<span><span>Such competitions I&#8217;ve only seen in movies.</span></span><br />
<span><span>But if I ever find myself in Las Vegas, make sure you&#8217;ll go</span></span></strong></p>
<p><strong><span><span><img class="aligncenter size-medium wp-image-12119" title="vegas_pool_party_59" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_59-500x363.jpg" alt="vegas pool party 59 500x363 Girls in swimsuits" width="500" height="363" /> <img class="aligncenter size-medium wp-image-12118" title="vegas_pool_party_58" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_58-370x500.jpg" alt="vegas pool party 58 370x500 Girls in swimsuits" width="370" height="500" /> <img class="aligncenter size-medium wp-image-12117" title="vegas_pool_party_57" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_57-377x500.jpg" alt="vegas pool party 57 377x500 Girls in swimsuits" width="377" height="500" /> <img class="aligncenter size-medium wp-image-12116" title="vegas_pool_party_56" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_56-335x500.jpg" alt="vegas pool party 56 335x500 Girls in swimsuits" width="335" height="500" /> <img class="aligncenter size-medium wp-image-12115" title="vegas_pool_party_55" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_55-276x500.jpg" alt="vegas pool party 55 276x500 Girls in swimsuits" width="276" height="500" /> <img class="aligncenter size-medium wp-image-12114" title="vegas_pool_party_54" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_54-322x500.jpg" alt="vegas pool party 54 322x500 Girls in swimsuits" width="322" height="500" /> <img class="aligncenter size-medium wp-image-12113" title="vegas_pool_party_53" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_53-500x335.jpg" alt="vegas pool party 53 500x335 Girls in swimsuits" width="500" height="335" /> <img class="aligncenter size-medium wp-image-12112" title="vegas_pool_party_52" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_52-332x500.jpg" alt="vegas pool party 52 332x500 Girls in swimsuits" width="332" height="500" /> <img class="aligncenter size-medium wp-image-12111" title="vegas_pool_party_51" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_51-332x500.jpg" alt="vegas pool party 51 332x500 Girls in swimsuits" width="332" height="500" /> <img class="aligncenter size-medium wp-image-12110" title="vegas_pool_party_50" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_50-334x500.jpg" alt="vegas pool party 50 334x500 Girls in swimsuits" width="334" height="500" /> <img class="aligncenter size-medium wp-image-12109" title="vegas_pool_party_49" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_49-332x500.jpg" alt="vegas pool party 49 332x500 Girls in swimsuits" width="332" height="500" /> <img class="aligncenter size-medium wp-image-12108" title="vegas_pool_party_48" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_48-330x500.jpg" alt="vegas pool party 48 330x500 Girls in swimsuits" width="330" height="500" /> <img class="aligncenter size-medium wp-image-12107" title="vegas_pool_party_47" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_47-334x500.jpg" alt="vegas pool party 47 334x500 Girls in swimsuits" width="334" height="500" /> <img class="aligncenter size-medium wp-image-12106" title="vegas_pool_party_46" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_46-329x500.jpg" alt="vegas pool party 46 329x500 Girls in swimsuits" width="329" height="500" /> <img class="aligncenter size-medium wp-image-12105" title="vegas_pool_party_45" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_45-333x500.jpg" alt="vegas pool party 45 333x500 Girls in swimsuits" width="333" height="500" /> <img class="aligncenter size-medium wp-image-12104" title="vegas_pool_party_44" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_44-286x500.jpg" alt="vegas pool party 44 286x500 Girls in swimsuits" width="286" height="500" /> <img class="aligncenter size-medium wp-image-12103" title="vegas_pool_party_43" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_43-333x500.jpg" alt="vegas pool party 43 333x500 Girls in swimsuits" width="333" height="500" /> <img class="aligncenter size-medium wp-image-12102" title="vegas_pool_party_42" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_42-372x500.jpg" alt="vegas pool party 42 372x500 Girls in swimsuits" width="372" height="500" /> <img class="aligncenter size-medium wp-image-12101" title="vegas_pool_party_41" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_41-331x500.jpg" alt="vegas pool party 41 331x500 Girls in swimsuits" width="331" height="500" /> <img class="aligncenter size-medium wp-image-12100" title="vegas_pool_party_40" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_40-336x500.jpg" alt="vegas pool party 40 336x500 Girls in swimsuits" width="336" height="500" /> <img class="aligncenter size-medium wp-image-12099" title="vegas_pool_party_39" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_39-336x500.jpg" alt="vegas pool party 39 336x500 Girls in swimsuits" width="336" height="500" /> <img class="aligncenter size-medium wp-image-12098" title="vegas_pool_party_38" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_38-330x500.jpg" alt="vegas pool party 38 330x500 Girls in swimsuits" width="330" height="500" /> <img class="aligncenter size-medium wp-image-12097" title="vegas_pool_party_37" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_37-328x500.jpg" alt="vegas pool party 37 328x500 Girls in swimsuits" width="328" height="500" /> <img class="aligncenter size-medium wp-image-12096" title="vegas_pool_party_36" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_36-330x500.jpg" alt="vegas pool party 36 330x500 Girls in swimsuits" width="330" height="500" /> <img class="aligncenter size-medium wp-image-12095" title="vegas_pool_party_35" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_35-385x500.jpg" alt="vegas pool party 35 385x500 Girls in swimsuits" width="385" height="500" /> <img class="aligncenter size-medium wp-image-12094" title="vegas_pool_party_34" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_34-288x500.jpg" alt="vegas pool party 34 288x500 Girls in swimsuits" width="288" height="500" /> <img class="aligncenter size-medium wp-image-12093" title="vegas_pool_party_33" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_33-303x500.jpg" alt="vegas pool party 33 303x500 Girls in swimsuits" width="303" height="500" /> <img class="aligncenter size-medium wp-image-12092" title="vegas_pool_party_32" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_32-500x450.jpg" alt="vegas pool party 32 500x450 Girls in swimsuits" width="500" height="450" /> <img class="aligncenter size-medium wp-image-12091" title="vegas_pool_party_31" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_31-380x500.jpg" alt="vegas pool party 31 380x500 Girls in swimsuits" width="380" height="500" /> <img class="aligncenter size-medium wp-image-12090" title="vegas_pool_party_30" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_30-369x500.jpg" alt="vegas pool party 30 369x500 Girls in swimsuits" width="369" height="500" /> <img class="aligncenter size-medium wp-image-12089" title="vegas_pool_party_29" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_29-409x500.jpg" alt="vegas pool party 29 409x500 Girls in swimsuits" width="409" height="500" /> <img class="aligncenter size-medium wp-image-12088" title="vegas_pool_party_28" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_28-370x500.jpg" alt="vegas pool party 28 370x500 Girls in swimsuits" width="370" height="500" /> <img class="aligncenter size-medium wp-image-12087" title="vegas_pool_party_27" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_27-372x500.jpg" alt="vegas pool party 27 372x500 Girls in swimsuits" width="372" height="500" /> <img class="aligncenter size-medium wp-image-12086" title="vegas_pool_party_26" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_26-369x500.jpg" alt="vegas pool party 26 369x500 Girls in swimsuits" width="369" height="500" /> <img class="aligncenter size-medium wp-image-12085" title="vegas_pool_party_25" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_25-270x500.jpg" alt="vegas pool party 25 270x500 Girls in swimsuits" width="270" height="500" /> <img class="aligncenter size-medium wp-image-12084" title="vegas_pool_party_24" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_24-474x500.jpg" alt="vegas pool party 24 474x500 Girls in swimsuits" width="474" height="500" /> <img class="aligncenter size-medium wp-image-12083" title="vegas_pool_party_23" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_23-280x500.jpg" alt="vegas pool party 23 280x500 Girls in swimsuits" width="280" height="500" /> <img class="aligncenter size-medium wp-image-12082" title="vegas_pool_party_22" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_22-370x500.jpg" alt="vegas pool party 22 370x500 Girls in swimsuits" width="370" height="500" /> <img class="aligncenter size-medium wp-image-12081" title="vegas_pool_party_21" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_21-423x500.jpg" alt="vegas pool party 21 423x500 Girls in swimsuits" width="423" height="500" /> <img class="aligncenter size-medium wp-image-12080" title="vegas_pool_party_20" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_20-372x500.jpg" alt="vegas pool party 20 372x500 Girls in swimsuits" width="372" height="500" /> <img class="aligncenter size-medium wp-image-12079" title="vegas_pool_party_19" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_19-379x500.jpg" alt="vegas pool party 19 379x500 Girls in swimsuits" width="379" height="500" /> <img class="aligncenter size-medium wp-image-12078" title="vegas_pool_party_18" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_18-371x500.jpg" alt="vegas pool party 18 371x500 Girls in swimsuits" width="371" height="500" /> <img class="aligncenter size-medium wp-image-12077" title="vegas_pool_party_17" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_17-500x365.jpg" alt="vegas pool party 17 500x365 Girls in swimsuits" width="500" height="365" /> <img class="aligncenter size-medium wp-image-12076" title="vegas_pool_party_16" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_16-277x500.jpg" alt="vegas pool party 16 277x500 Girls in swimsuits" width="277" height="500" /> <img class="aligncenter size-medium wp-image-12075" title="vegas_pool_party_15" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_15-371x500.jpg" alt="vegas pool party 15 371x500 Girls in swimsuits" width="371" height="500" /> <img class="aligncenter size-medium wp-image-12074" title="vegas_pool_party_14" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_14-365x500.jpg" alt="vegas pool party 14 365x500 Girls in swimsuits" width="365" height="500" /> <img class="aligncenter size-medium wp-image-12073" title="vegas_pool_party_13" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_13-287x500.jpg" alt="vegas pool party 13 287x500 Girls in swimsuits" width="287" height="500" /> <img class="aligncenter size-medium wp-image-12072" title="vegas_pool_party_12" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_12-421x500.jpg" alt="vegas pool party 12 421x500 Girls in swimsuits" width="421" height="500" /> <img class="aligncenter size-medium wp-image-12071" title="vegas_pool_party_11" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_11-372x500.jpg" alt="vegas pool party 11 372x500 Girls in swimsuits" width="372" height="500" /> <img class="aligncenter size-medium wp-image-12070" title="vegas_pool_party_10" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_10-369x500.jpg" alt="vegas pool party 10 369x500 Girls in swimsuits" width="369" height="500" /> <img class="aligncenter size-medium wp-image-12069" title="vegas_pool_party_09" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_09-364x500.jpg" alt="vegas pool party 09 364x500 Girls in swimsuits" width="364" height="500" /> <img class="aligncenter size-medium wp-image-12068" title="vegas_pool_party_08" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_08-285x500.jpg" alt="vegas pool party 08 285x500 Girls in swimsuits" width="285" height="500" /> <img class="aligncenter size-medium wp-image-12067" title="vegas_pool_party_07" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_07-372x500.jpg" alt="vegas pool party 07 372x500 Girls in swimsuits" width="372" height="500" /> <img class="aligncenter size-medium wp-image-12066" title="vegas_pool_party_06" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_06-372x500.jpg" alt="vegas pool party 06 372x500 Girls in swimsuits" width="372" height="500" /> <img class="aligncenter size-medium wp-image-12065" title="vegas_pool_party_05" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_05-283x500.jpg" alt="vegas pool party 05 283x500 Girls in swimsuits" width="283" height="500" /> <img class="aligncenter size-medium wp-image-12064" title="vegas_pool_party_04" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_04-370x500.jpg" alt="vegas pool party 04 370x500 Girls in swimsuits" width="370" height="500" /> <img class="aligncenter size-medium wp-image-12063" title="vegas_pool_party_03" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_03-367x500.jpg" alt="vegas pool party 03 367x500 Girls in swimsuits" width="367" height="500" /> <img class="aligncenter size-medium wp-image-12062" title="vegas_pool_party_02" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_02-370x500.jpg" alt="vegas pool party 02 370x500 Girls in swimsuits" width="370" height="500" /> <img class="aligncenter size-medium wp-image-12061" title="vegas_pool_party_01" src="http://www.skyrider.biz/wp-content/uploads/2011/04/vegas_pool_party_01-388x500.jpg" alt="vegas pool party 01 388x500 Girls in swimsuits" width="388" height="500" /><br />
</span></span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/girls-in-swimsuits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Fantastico on cPanel/WHM</title>
		<link>http://www.skyrider.biz/how-to-install-fantastico-on-cpanelwhm/</link>
		<comments>http://www.skyrider.biz/how-to-install-fantastico-on-cpanelwhm/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 11:20:12 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=12257</guid>
		<description><![CDATA[Tutorial courtesy of netenberg.com You don&#8217;t need to download any files in order to install Fantastico! Just SSH to your server and enter following commands (you may also copy/paste): cd /usr/local/cpanel/whostmgr/docroot/cgi wget -N http://files.betaservant.com/files/free/fantastico_whm_admin.tgz tar -xzpf fantastico_whm_admin.tgz rm -rf fantastico_whm_admin.tgz NOW GO TO YOUR WHM -&#62; Add-Ons (Plugins on v11.x or higher) -&#62; Fantastico De<a class="rmore" href="http://www.skyrider.biz/how-to-install-fantastico-on-cpanelwhm/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p><em>Tutorial courtesy of netenberg.com</em></p>
<p>You don&#8217;t need to download any files in order to install Fantastico!</p>
<p>Just SSH to your server and enter following commands (you may also copy/paste):</p>
<blockquote><p>cd /usr/local/cpanel/whostmgr/docroot/cgi<br />
wget -N http://files.betaservant.com/files/free/fantastico_whm_admin.tgz<br />
tar -xzpf fantastico_whm_admin.tgz<br />
rm -rf fantastico_whm_admin.tgz</p></blockquote>
<p>NOW GO TO YOUR WHM -&gt; Add-Ons (Plugins on v11.x or higher) -&gt; Fantastico De Luxe WHM Admin (scroll down the left menu).</p>
<p>Follow the on screen instructions.</p>
<p>If you get a Source Guardian error when you go to Fantastico for the first time, just run this command:</p>
<blockquote><p>chmod -R 0755 /usr/local/cpanel/3rdparty/etc/ixed</p></blockquote>
<p>After the installation is complete, click on &#8220;Settings&#8221; and go through the settings. While some settings are not important, some other (marked below with an *) are essential for a proper functioning of Fantastico installations.<br />
Language: Select the language for the admin backend AND default language for users without a language selected.<br />
Email notifications: Enter an email address in order to receive notifications when users perform installations using Fantastico.<br />
Master files settings (*): If you are not an advanced user who modifies the master files, leave this to &#8220;Remove&#8221;. Change this only if you know what you are doing<br />
PHPsuexec (*): VERY ESSENTIAL!!! Changing this value will not install or de-install phpsuexec for you. It will only tell Fantastico that you have phpsuexec installed or not installed on your server. Change to &#8220;installed&#8221; if you perform installations which produce an &#8220;Internal Server Error&#8221;. Notice: Changes will not apply to existing installations! You have to re-install in order to have working installations.<br />
Path to netPBM: Enter the full path to the netPBM binaries in order to enable Gallery installations. As long as this field has no value, your users will not be able to install Gallery.<br />
Select Fantastico licensing and files server: If the Fantastico pages take long to load switch to the server that works best for you. Fantastico will auto-switch if connections time out.<br />
Update preference: Select latest version (sometimes experimental) or stable version (best working).</p>
<p>If your users don&#8217;t see a Fantastico link in their CPanel: Go to WHM and edit the &#8220;default&#8221; Features List. Activate Fantastico.</p>
<p>If you are still having problems, take a look at <a href="http://www.crucialp.com/resources/tutorials/server-administration/fantastico-enc_restrictions.inc.php-is-protected-by-SourceGuardian-and-requires-file%20ixed.lin.4.X.X.pxp-4.3.7.pxp-4.3.8.pxp-4.3.9.php">this article</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/how-to-install-fantastico-on-cpanelwhm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install mod_pagespeed in Apache for Cpanel</title>
		<link>http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/</link>
		<comments>http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 22:00:50 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>
		<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=12057</guid>
		<description><![CDATA[From mod_pagespeed’s docs, I quote: mod_pagespeed is an open-source Apache module that automatically optimizes web pages and resources on them. It does this by rewriting the resources using filters that implement web performance best practices. Webmasters and web developers can use mod_pagespeed to improve the performance of their web pages when serving content with the Apache<a class="rmore" href="http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>From mod_pagespeed’s <a href="http://code.google.com/speed/page-speed/docs/module.html" target="_blank">docs</a>, I quote:</p>
<blockquote><p><strong>mod_pagespeed</strong> is an open-source Apache module that automatically optimizes web pages and resources on them. It does this by rewriting the resources using filters that implement web performance best practices. Webmasters and web developers can use mod_pagespeed to improve the performance of their web pages when serving content with the Apache HTTP Server.</p>
<p>mod_pagespeed includes several filter that optimize JavaScript, HTML and CSS stylesheets. It also includes filters for optimizing JPEG and PNG images. The filters are based on a set of best practices known to enhance web page performance. Webmasters who set up mod_pagespeed in addition to configuring proper caching and compression on their Apache distribution should expect to see an improvement in the loading time of the pages on their websites.</p></blockquote>
<p>Sounds interesting. Mod_pagespeed is brand new, and running it with Apache on a Cpanel server is a very easy task. While you can follow the instructions mentioned <a href="http://code.google.com/p/modpagespeed/wiki/HowToBuild" target="_blank">here</a> to build from source, you can also use the binary.</p>
<p>But then, it fails to install correctly on a Cpanel server as it requires httpd package. Still, we can extract the files from the binary and copy it over to the necessary paths to get it up and running in a few minutes time <img src="http://www.technomenace.com/wp-includes/images/smilies/icon_smile.gif" alt="icon smile Install mod pagespeed in Apache for Cpanel"  title="Install mod pagespeed in Apache for Cpanel" /> This is how I did it on a Apache v2.2 + CPanel server running on CentOS 5.5 (32-bit):</p>
<blockquote>
<pre> <strong>cd /usr/src</strong>
 <strong>wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_i386.rpm</strong></pre>
<pre>For 64 bit use this link ! 
<a rel="nofollow" href="https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_x86_64.rpm">https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_x86_64.rpm</a></pre>
<pre> <strong>mkdir mod-pagespeed</strong>
 <strong>cd mod-pagespeed</strong>
<strong>rpm2cpio ../mod-pagespeed-beta_current_i386.rpm | cpio -idmv</strong>
./etc/cron.daily/mod-pagespeed
./etc/httpd/conf.d/pagespeed.conf
./usr/lib/httpd/modules/mod_pagespeed.so
./var/mod_pagespeed/cache
./var/mod_pagespeed/files
3135 blocks
 <strong>cp ./etc/httpd/conf.d/pagespeed.conf /usr/local/apache/conf/</strong>
 <strong>cp ./usr/lib/httpd/modules/mod_pagespeed.so /usr/local/apache/modules/</strong>
 <strong>chmod 755 /usr/local/apache/modules/mod_pagespeed.so</strong>
 <strong>mkdir /var/mod_pagespeed/{cache,files} -p</strong>
 <strong>chown nobody:nobody /var/mod_pagespeed/*</strong></pre>
</blockquote>
<p><strong>Mod_pagespeed</strong> needs <strong>mod_deflate</strong> to be loaded in Apache. If it is not yet installed, you can just include the same from apache source, like:<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> <strong>/usr/local/apache/bin/apxs -c -i /home/cpeasyapache/src/httpd-2.2.14/modules/filters/mod_deflate.c</strong></span></p>
<p>Now, edit <strong>/usr/local/apache/conf/pagespeed.conf</strong> and change the LoadModule lines to point to these paths:</p>
<blockquote><p>LoadModule pagespeed_module modules/mod_pagespeed.so</p>
<p># Only attempt to load mod_deflate if it hasn’t been loaded already.</p>
<p>&lt;IfModule !mod_deflate.c&gt;</p>
<p>LoadModule deflate_module modules/mod_deflate.so</p></blockquote>
<p>And finally, include pagespeed.conf in /usr/local/apache/conf/httpd.conf:</p>
<blockquote><p>Include “conf/pagespeed.conf”</p></blockquote>
<p>and then restart apache:</p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"><strong>service httpd restart</strong></span></p>
<p>If everything is fine, apache will start normally and as your domains begin to get hits, you will see data being written in to /var/mod_pagespeed/*. Just a reminder that this module seems to write a lot of data in apache error log. You might need to monitor the server load and i/o stats for some time to ensure that everything is stable.</p>
<p><strong>NOTE: </strong>The above guide is strictly for 32-bit servers. If you are running on 64-bit, then you need the 64-bit package (.rpm).</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Next Door Hotties</title>
		<link>http://www.skyrider.biz/next-door-hotties/</link>
		<comments>http://www.skyrider.biz/next-door-hotties/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 18:02:22 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=1490</guid>
		<description><![CDATA[Now some of these hotties can live next to you.. chek this out.. so mybe your neighbour hottie is here]]></description>
			<content:encoded><![CDATA[<p>Now some of these hotties can live next to you.. chek this out.. so mybe your neighbour hottie is here <img src='http://www.skyrider.biz/wp-includes/images/smilies/icon_smile.gif' alt="icon smile Next Door Hotties" class='wp-smiley' title="Next Door Hotties" /> </p>
<p><img class="aligncenter size-medium wp-image-1491" title="13_podborka_04" src="http://skyrider.biz/wp-content/uploads/2010/01/13_podborka_04-500x311.jpg" alt="13 podborka 04 500x311 Next Door Hotties" width="500" height="311" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/next-door-hotties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful lips</title>
		<link>http://www.skyrider.biz/beauty/</link>
		<comments>http://www.skyrider.biz/beauty/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 20:32:23 +0000</pubDate>
		<dc:creator>dina</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[LifeStyle]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=9866</guid>
		<description><![CDATA[What a beauty-lips]]></description>
			<content:encoded><![CDATA[<p>What a beauty-lips</p>
<p><a rel="attachment wp-att-9883" href="http://www.skyrider.biz/beauty/gubki_48295_s__15/"><img class="alignnone size-medium wp-image-9883" title="gubki_48295_s__15" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__15-485x500.jpg" alt="gubki 48295 s  15 485x500 Beautiful lips" width="485" height="500" /></a> <a rel="attachment wp-att-9882" href="http://www.skyrider.biz/beauty/gubki_48295_s__14/"><img class="alignnone size-medium wp-image-9882" title="gubki_48295_s__14" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__14-495x500.jpg" alt="gubki 48295 s  14 495x500 Beautiful lips" width="495" height="500" /></a> <a rel="attachment wp-att-9881" href="http://www.skyrider.biz/beauty/gubki_48295_s__13/"><img class="alignnone size-medium wp-image-9881" title="gubki_48295_s__13" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__13-500x322.jpg" alt="gubki 48295 s  13 500x322 Beautiful lips" width="500" height="322" /></a> <a rel="attachment wp-att-9880" href="http://www.skyrider.biz/beauty/gubki_48295_s__12/"><img class="alignnone size-medium wp-image-9880" title="gubki_48295_s__12" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__12-384x500.jpg" alt="gubki 48295 s  12 384x500 Beautiful lips" width="384" height="500" /></a> <a rel="attachment wp-att-9879" href="http://www.skyrider.biz/beauty/gubki_48295_s__11/"><img class="alignnone size-medium wp-image-9879" title="gubki_48295_s__11" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__11-500x372.jpg" alt="gubki 48295 s  11 500x372 Beautiful lips" width="500" height="372" /></a> <a rel="attachment wp-att-9877" href="http://www.skyrider.biz/beauty/gubki_48295_s__10/"><img class="alignnone size-medium wp-image-9877" title="gubki_48295_s__10" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__10-500x322.jpg" alt="gubki 48295 s  10 500x322 Beautiful lips" width="500" height="322" /></a> <a rel="attachment wp-att-9876" href="http://www.skyrider.biz/beauty/gubki_48295_s__9/"><img class="alignnone size-medium wp-image-9876" title="gubki_48295_s__9" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__9-500x331.jpg" alt="gubki 48295 s  9 500x331 Beautiful lips" width="500" height="331" /></a> <a rel="attachment wp-att-9875" href="http://www.skyrider.biz/beauty/gubki_48295_s__8/"><img class="alignnone size-medium wp-image-9875" title="gubki_48295_s__8" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__8-500x374.jpg" alt="gubki 48295 s  8 500x374 Beautiful lips" width="500" height="374" /></a> <a rel="attachment wp-att-9874" href="http://www.skyrider.biz/beauty/gubki_48295_s__7/"><img class="alignnone size-medium wp-image-9874" title="gubki_48295_s__7" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__7-500x371.jpg" alt="gubki 48295 s  7 500x371 Beautiful lips" width="500" height="371" /></a> <a rel="attachment wp-att-9873" href="http://www.skyrider.biz/beauty/gubki_48295_s__6/"><img class="alignnone size-medium wp-image-9873" title="gubki_48295_s__6" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__6-500x398.jpg" alt="gubki 48295 s  6 500x398 Beautiful lips" width="500" height="398" /></a> <a rel="attachment wp-att-9872" href="http://www.skyrider.biz/beauty/gubki_48295_s__5/"><img class="alignnone size-medium wp-image-9872" title="gubki_48295_s__5" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__5-500x352.jpg" alt="gubki 48295 s  5 500x352 Beautiful lips" width="500" height="352" /></a> <a rel="attachment wp-att-9871" href="http://www.skyrider.biz/beauty/gubki_48295_s__4/"><img class="alignnone size-medium wp-image-9871" title="gubki_48295_s__4" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__4-500x372.jpg" alt="gubki 48295 s  4 500x372 Beautiful lips" width="500" height="372" /></a> <a rel="attachment wp-att-9870" href="http://www.skyrider.biz/beauty/gubki_48295_s__3/"><img class="alignnone size-medium wp-image-9870" title="gubki_48295_s__3" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__3-500x355.jpg" alt="gubki 48295 s  3 500x355 Beautiful lips" width="500" height="355" /></a> <a rel="attachment wp-att-9869" href="http://www.skyrider.biz/beauty/gubki_48295_s__2/"><img class="alignnone size-medium wp-image-9869" title="gubki_48295_s__2" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__2-500x353.jpg" alt="gubki 48295 s  2 500x353 Beautiful lips" width="500" height="353" /></a> <a rel="attachment wp-att-9868" href="http://www.skyrider.biz/beauty/gubki_48295_s__1/"><img class="alignnone size-medium wp-image-9868" title="gubki_48295_s__1" src="http://www.skyrider.biz/wp-content/uploads/2010/12/gubki_48295_s__1-500x374.jpg" alt="gubki 48295 s  1 500x374 Beautiful lips" width="500" height="374" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/beauty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Service</title>
		<link>http://www.skyrider.biz/computer-service/</link>
		<comments>http://www.skyrider.biz/computer-service/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 15:55:23 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=9722</guid>
		<description><![CDATA[Now if you ever wonder how is it look like to be a hardware servicer..well.. here you go .. see how that really looks like LOL]]></description>
			<content:encoded><![CDATA[<p>Now if you ever wonder how is it look like to be a hardware servicer..well.. here you go .. see how that really looks like LOL</p>
<p><img class="aligncenter size-medium wp-image-9732" title="data_center_10" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_10-500x375.jpg" alt="data center 10 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9731" title="data_center_09" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_09-500x375.jpg" alt="data center 09 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9730" title="data_center_08" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_08-500x375.jpg" alt="data center 08 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9729" title="data_center_07" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_07-500x375.jpg" alt="data center 07 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9728" title="data_center_06" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_06-500x375.jpg" alt="data center 06 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9727" title="data_center_05" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_05-375x500.jpg" alt="data center 05 375x500 Computer Service" width="375" height="500" /> <img class="aligncenter size-medium wp-image-9726" title="data_center_04" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_04-375x500.jpg" alt="data center 04 375x500 Computer Service" width="375" height="500" /> <img class="aligncenter size-medium wp-image-9725" title="data_center_03" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_03-500x375.jpg" alt="data center 03 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9724" title="data_center_02" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_02-500x375.jpg" alt="data center 02 500x375 Computer Service" width="500" height="375" /> <img class="aligncenter size-medium wp-image-9723" title="data_center_01" src="http://www.skyrider.biz/wp-content/uploads/2010/11/data_center_01-500x375.jpg" alt="data center 01 500x375 Computer Service" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/computer-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 Most Bizarre things ever listed on eBay</title>
		<link>http://www.skyrider.biz/bizarre-ebay-products/</link>
		<comments>http://www.skyrider.biz/bizarre-ebay-products/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 20:01:58 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[interesting]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[Weird]]></category>
		<category><![CDATA[Bizarre]]></category>
		<category><![CDATA[eBay]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=7032</guid>
		<description><![CDATA[eBay is definitely a one-stop shopping solution since they have quality products and are delivered in sound condition. You can find anything there, stamps, old books, cheap mobile phones etc. kids toys and sometime weird things. If you didn&#8217;t stumbled upon something bizarre on eBay then have a look. It is astonishing how people post these<a class="rmore" href="http://www.skyrider.biz/bizarre-ebay-products/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>eBay is definitely a one-stop shopping solution since they have quality products and are delivered in sound condition. You can find anything there, stamps, old books, cheap mobile phones etc. kids toys and sometime weird things.</p>
<p>If you didn&#8217;t stumbled upon something bizarre on eBay then have a look. It is astonishing how people post these sort of things online and even get bids, sales and reputation points.</p>
<p>Thank God! these sort of goods aren&#8217;t available in stores or else it would be called &#8220;the freak-shop&#8221; you can add your interesting names to the weird world using the comment section below this post.</p>
<h2>1.) A Penis Shaped Cheeto</h2>
<p><a rel="attachment wp-att-7462" href="http://skyrider.biz/bizarre-ebay-products/2779206507_123755ec0d/"><img class="aligncenter size-full wp-image-7462" src="http://skyrider.biz/wp-content/uploads/2010/08/2779206507_123755ec0d.jpg" alt="2779206507 123755ec0d 6 Most Bizarre things ever listed on eBay" width="352" height="500" title="6 Most Bizarre things ever listed on eBay" /></a></p>
<p>Hmm&#8230; strange, idiotic and even slutty, who&#8217;d purchase that, who&#8217;d want this in their home. A Cheeto shaped to man&#8217;s genital, it was sold at a price $1.25 with a few bidder, strange!</p>
<h2>2.) A Town in Texas</h2>
<p style="text-align: left;"><img class="aligncenter" src="http://farm1.static.flickr.com/173/412105495_5d3e3e0ff0.jpg" alt="412105495 5d3e3e0ff0 6 Most Bizarre things ever listed on eBay"  title="6 Most Bizarre things ever listed on eBay" /></p>
<p style="text-align: left;">I know eBay sells property, but that should be property, like a house or something. Buying or selling or even bidding for something like the complete town is shocking.</p>
<h2>3.) An Ad Banner on Man&#8217;s Forehead</h2>
<div style="text-align: center;"><img src="http://farm1.static.flickr.com/98/246003604_4d2f964e4e.jpg" alt="246003604 4d2f964e4e 6 Most Bizarre things ever listed on eBay"  title="6 Most Bizarre things ever listed on eBay" /></div>
<p>I agree with God, he is unfare, he made idiots and then made my hands to write about them. I know people adopt offbeat jobs to earn a living but something like selling your body parts as advertising spots is far more than insanity.</p>
<p>The price he offered for his forehead was $322, amazing, weird, bizarre, idiotic, stupid, entrepreneur, i have no words. I just hope people reading this don&#8217;t get excited about the whole thing and start selling advertising spots on body.</p>
<h2>4.) The Meaning of Life</h2>
<p>Yeah! the world is full of distracted souls and thousands of books, literally thousands of books are published every year worldwide of which many tell the same thing &#8220;Meaning of Life&#8221; but on eBay a guy sold video session and paper course about the same for $3.26.</p>
<h2>5.) Wisdom Teeth</h2>
<p>Woah! now that made me creek, yuck! who&#8217;d break his wisdom teeth for money and even if that was the result of an accident! who would be so dumb to see profit in those broken calcium bits.</p>
<p>Albert Einstein noted correctly, &#8220;Two things in this universe are infinite the universe and human stupidity and i am not sure about the universe.&#8221;</p>
<p>Well, this is so true and worthy of getting quoted here.</p>
<h2>6.) An Iron Man Mask</h2>
<div style="text-align: center;"><img src="http://farm3.static.flickr.com/2569/3793949471_5e7526a11b.jpg" alt="3793949471 5e7526a11b 6 Most Bizarre things ever listed on eBay"  title="6 Most Bizarre things ever listed on eBay" /></div>
<p>Iron man, yeah.. the character played by Robert Downie Jr. made a buzz in all of Hollywood but eBay wasn&#8217;t left behind either. A man who got the souvenir from Iron Man Sets &#8212; The Iron Man Mask &#8212; decided to list it on eBay at a starting price of $32.5 and the bid got this guy a whopping 325%.</p>
<p>It is amazing how a hairbrush of some hot top pop start can make a fortune on eBay.</p>
<p>Though craziness is not just determined by these activities, it is the inner drive that makes people come up with these amazing and bizarre listing.</p>
<p>You can see the whole listings on eBay, the sold may have been removed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/bizarre-ebay-products/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>nginx + php-fpm using centos.alt.ru &amp; EPEL repo in CentOS</title>
		<link>http://www.skyrider.biz/nginx-php-fpm-using-centos-alt-ru-epel-repo-in-centos/</link>
		<comments>http://www.skyrider.biz/nginx-php-fpm-using-centos-alt-ru-epel-repo-in-centos/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 02:11:46 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=6417</guid>
		<description><![CDATA[I have create post about installing nginx + php-fpm from source before in herehttp://adityo.blog.binusian.org/?p=428. In this tutorial i will create a more simple way installing nginx + php-fpm using yum with centos.alt.ru &#38; EPEL repo. Here it’s goes: - Create repo # cd /etc/yum.repos.d # vim rusia-repo.repo - and paste this [rusia-repo] name=CentOS-$releasever – rusia<a class="rmore" href="http://www.skyrider.biz/nginx-php-fpm-using-centos-alt-ru-epel-repo-in-centos/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>I have create post about installing nginx + php-fpm from source before in here<a href="http://adityo.blog.binusian.org/?p=428">http://adityo.blog.binusian.org/?p=428</a>. In this tutorial i will create a more simple way installing nginx + php-fpm using yum with centos.alt.ru &amp; EPEL repo.</p>
<p>Here it’s goes:</p>
<p>- Create repo<br />
# cd /etc/yum.repos.d<br />
# vim rusia-repo.repo</p>
<p>- and paste this</p>
<p>[rusia-repo]<br />
name=CentOS-$releasever – rusia packages for $basearch<br />
#baseurl=file:///raid/RH/CentOS/$releasever/local/$basearch<br />
baseurl=http://centos.alt.ru/pub/repository/centos/5/i386/<br />
enabled=1<br />
gpgcheck=0<br />
protect=1</p>
<p>- Enable EPEL repo<br />
# rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/$(uname -m)/epel-release-5-3.noarch.rpm</p>
<p>- Install nginx and php-fpm</p>
<p># yum install nginx php-fpm</p>
<p>- go to nginx configuration file: “/usr/local/nginx/conf/nginx.conf” , and add  the php configuration</p>
<p>location ~ \.php$ {<br />
root /usr/share/nginx/html; # itmena the root of the coument are located on</p>
<p>/usr/share/nginx/html<br />
fastcgi_pass 127.0.0.1:9000;<br />
fastcgi_index index.php;<br />
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;<br />
include fastcgi_params;<br />
}</p>
<p>- Go to /usr/share/nginx/html and create php files<br />
# vi index.php<br />
&lt;?php phpinfo(); ?&gt;</p>
<p>- Start the nginx and php-fpm<br />
# service php-fpm start<br />
# service nginx start</p>
<p>You can go to your server domain / ip address to see the phpinfo files</p>
<p>Source : <a href="http://jk.scanmon.com/en/wp/2010/02/installing-nginx-php-fpm-using-centos-alt-ru-epel-repo-in-centos.html">Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/nginx-php-fpm-using-centos-alt-ru-epel-repo-in-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Underground river in Novosibirsk</title>
		<link>http://www.skyrider.biz/underground-river-in-novosibirsk/</link>
		<comments>http://www.skyrider.biz/underground-river-in-novosibirsk/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 15:20:06 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=6082</guid>
		<description><![CDATA[In the sewers seem&#8230;]]></description>
			<content:encoded><![CDATA[<p>In the sewers seem&#8230;</p>

<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_19/' title='underground_rive_19'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_19-300x300.jpg" class="attachment-thumbnail" alt="underground rive 19 300x300 Underground river in Novosibirsk" title="underground_rive_19" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_18/' title='underground_rive_18'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_18-300x300.jpg" class="attachment-thumbnail" alt="underground rive 18 300x300 Underground river in Novosibirsk" title="underground_rive_18" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_17/' title='underground_rive_17'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_17-300x300.jpg" class="attachment-thumbnail" alt="underground rive 17 300x300 Underground river in Novosibirsk" title="underground_rive_17" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_16/' title='underground_rive_16'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_16-300x300.jpg" class="attachment-thumbnail" alt="underground rive 16 300x300 Underground river in Novosibirsk" title="underground_rive_16" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_15/' title='underground_rive_15'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_15-300x300.jpg" class="attachment-thumbnail" alt="underground rive 15 300x300 Underground river in Novosibirsk" title="underground_rive_15" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_13/' title='underground_rive_13'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_13-300x300.jpg" class="attachment-thumbnail" alt="underground rive 13 300x300 Underground river in Novosibirsk" title="underground_rive_13" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_12/' title='underground_rive_12'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_12-300x300.jpg" class="attachment-thumbnail" alt="underground rive 12 300x300 Underground river in Novosibirsk" title="underground_rive_12" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_11/' title='underground_rive_11'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_11-300x300.jpg" class="attachment-thumbnail" alt="underground rive 11 300x300 Underground river in Novosibirsk" title="underground_rive_11" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_10/' title='underground_rive_10'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_10-300x300.jpg" class="attachment-thumbnail" alt="underground rive 10 300x300 Underground river in Novosibirsk" title="underground_rive_10" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_09/' title='underground_rive_09'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_09-300x300.jpg" class="attachment-thumbnail" alt="underground rive 09 300x300 Underground river in Novosibirsk" title="underground_rive_09" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_08/' title='underground_rive_08'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_08-300x300.jpg" class="attachment-thumbnail" alt="underground rive 08 300x300 Underground river in Novosibirsk" title="underground_rive_08" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_07/' title='underground_rive_07'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_07-300x300.jpg" class="attachment-thumbnail" alt="underground rive 07 300x300 Underground river in Novosibirsk" title="underground_rive_07" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_06/' title='underground_rive_06'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_06-300x300.jpg" class="attachment-thumbnail" alt="underground rive 06 300x300 Underground river in Novosibirsk" title="underground_rive_06" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_05/' title='underground_rive_05'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_05-300x300.jpg" class="attachment-thumbnail" alt="underground rive 05 300x300 Underground river in Novosibirsk" title="underground_rive_05" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_04/' title='underground_rive_04'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_04-300x300.jpg" class="attachment-thumbnail" alt="underground rive 04 300x300 Underground river in Novosibirsk" title="underground_rive_04" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_03/' title='underground_rive_03'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_03-300x300.jpg" class="attachment-thumbnail" alt="underground rive 03 300x300 Underground river in Novosibirsk" title="underground_rive_03" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_02/' title='underground_rive_02'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_02-300x300.jpg" class="attachment-thumbnail" alt="underground rive 02 300x300 Underground river in Novosibirsk" title="underground_rive_02" /></a>
<a href='http://www.skyrider.biz/underground-river-in-novosibirsk/underground_rive_01/' title='underground_rive_01'><img width="300" height="300" src="http://www.skyrider.biz/wp-content/uploads/2010/06/underground_rive_01-300x300.jpg" class="attachment-thumbnail" alt="underground rive 01 300x300 Underground river in Novosibirsk" title="underground_rive_01" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/underground-river-in-novosibirsk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

