<?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>Simply Excited - Technology, Outdoor and Design &#187; vps</title>
	<atom:link href="http://scoop.simplyexcited.co.uk/category/vps/feed/" rel="self" type="application/rss+xml" />
	<link>http://scoop.simplyexcited.co.uk</link>
	<description>Technology, Design and Outdoor</description>
	<lastBuildDate>Fri, 23 Dec 2011 11:33:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing git from source ubuntu</title>
		<link>http://scoop.simplyexcited.co.uk/2009/05/14/installing-git-from-source-ubuntu/</link>
		<comments>http://scoop.simplyexcited.co.uk/2009/05/14/installing-git-from-source-ubuntu/#comments</comments>
		<pubDate>Thu, 14 May 2009 16:00:21 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2009/05/14/installing-git-from-source-ubuntu/</guid>
		<description><![CDATA[	When you have an old version of ubuntu but want a new version of git. And potentially have it already installed.

	
sudo apt-get update
sudo apt-get remove git-core
sudo apt-get install tcl8.4 tk8.4
sudo apt-get build-dep git-core
&#160;
wget http://kernel.org/pub/software/scm/git/git-1.6.3.1.tar.gz
tar -zxvf git-1.6.3.1.tar.gz
cd git-1.6.3.1
./configure
make
sudo make install
&#160;
&#160;
sudo ln -s /usr/local/bin/git /usr/bin/git



 ]]></description>
			<content:encoded><![CDATA[	<p>When you have an old version of ubuntu but want a new version of git. And potentially have it already installed.</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash"><span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get remove git-core
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> tcl8<span style="color: #000000;">.4</span> tk8<span style="color: #000000;">.4</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get build-dep git-core
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">wget</span> http://kernel.org/pub/software/scm/git/git<span style="color: #000000;">-1.6</span><span style="color: #000000;">.3</span><span style="color: #000000;">.1</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> -zxvf git<span style="color: #000000;">-1.6</span><span style="color: #000000;">.3</span><span style="color: #000000;">.1</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> git<span style="color: #000000;">-1.6</span><span style="color: #000000;">.3</span><span style="color: #000000;">.1</span>
./configure
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span>
&nbsp;
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">ln</span> -s /usr/<span style="color: #7a0874; font-weight: bold;">local</span>/bin/git /usr/bin/git</pre></div></div>
</p>


 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2009/05/14/installing-git-from-source-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing ImageMagick / Rmagick on Ubuntu Hardy</title>
		<link>http://scoop.simplyexcited.co.uk/2009/05/14/installing-imagemagick-rmagick-on-ubuntu-hardy/</link>
		<comments>http://scoop.simplyexcited.co.uk/2009/05/14/installing-imagemagick-rmagick-on-ubuntu-hardy/#comments</comments>
		<pubDate>Thu, 14 May 2009 11:22:28 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2009/05/14/installing-imagemagick-rmagick-on-ubuntu-hardy/</guid>
		<description><![CDATA[	Mainly to help me remember in the future. Might be useful to you also..

	
  sudo apt-get update
  sudo apt-get install imagemagick
  sudo apt-get install libmagick9-dev
  sudo gem install rmagick



 ]]></description>
			<content:encoded><![CDATA[	<p>Mainly to help me remember in the future. Might be useful to you also..</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get update
  <span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> imagemagick
  <span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> libmagick9-dev
  <span style="color: #c20cb9; font-weight: bold;">sudo</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> rmagick</pre></div></div>
</p>


 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2009/05/14/installing-imagemagick-rmagick-on-ubuntu-hardy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php commandline on ubuntu</title>
		<link>http://scoop.simplyexcited.co.uk/2007/11/20/php-commandline-on-ubuntu/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/11/20/php-commandline-on-ubuntu/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 15:46:55 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/11/20/php-commandline-on-ubuntu/</guid>
		<description><![CDATA[	Tested on Ubuntu LTS 6.06

	
  sudo apt-get install php5-cli



 ]]></description>
			<content:encoded><![CDATA[	<p>Tested on Ubuntu <span class="caps">LTS 6</span>.06</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> php5-cli</pre></div></div>
</p>


 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/11/20/php-commandline-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Nginx on Ubuntu Dapper (LTS 6.06)</title>
		<link>http://scoop.simplyexcited.co.uk/2007/11/15/installing-nginx-on-ubuntu-dapper-lts-606/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/11/15/installing-nginx-on-ubuntu-dapper-lts-606/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 10:02:18 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/11/15/installing-nginx-on-ubuntu-dapper-lts-606/</guid>
		<description><![CDATA[	There is a great slicehost article which goes into more detail than this. But the following script will install it from source in one go!.

	
#!/bin/bash
&#160;
sudo apt-get install libpcre3 libpcre3-dev libpcrecpp0 libssl-dev
wget http://sysoev.ru/nginx/nginx-0.5.33.tar.gz
tar -zxvf nginx-0.5.33.tar.gz
cd nginx-0.5.33
./configure --sbin-path=/usr/local/sbin --with-http_ssl_module
make
sudo make install
cd ~
cd sources
sudo wget http://notrocketsurgery.com/files/nginx -O /etc/init.d/nginx
sudo chmod 755 /etc/init.d/nginx
sudo update-rc.d nginx defaults



 ]]></description>
			<content:encoded><![CDATA[	<p>There is a great <a href="http://articles.slicehost.com/2007/10/16/ubuntu-lts-installing-nginx" title="">slicehost article</a> which goes into more detail than this. But the following script will install it from source in one go!.</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash"><span style="color: #808080; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> libpcre3 libpcre3-dev libpcrecpp0 libssl-dev
<span style="color: #c20cb9; font-weight: bold;">wget</span> http://sysoev.ru/nginx/nginx<span style="color: #000000;">-0.5</span><span style="color: #000000;">.33</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> -zxvf nginx<span style="color: #000000;">-0.5</span><span style="color: #000000;">.33</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> nginx<span style="color: #000000;">-0.5</span><span style="color: #000000;">.33</span>
./configure --sbin-<span style="color: #007800;">path=</span>/usr/<span style="color: #7a0874; font-weight: bold;">local</span>/sbin --with-http_ssl_module
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span>
<span style="color: #7a0874; font-weight: bold;">cd</span> ~
<span style="color: #7a0874; font-weight: bold;">cd</span> sources
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">wget</span> http://notrocketsurgery.com/files/nginx -O /etc/init.d/nginx
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">755</span> /etc/init.d/nginx
<span style="color: #c20cb9; font-weight: bold;">sudo</span> update-rc.d nginx defaults</pre></div></div>
</p>


 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/11/15/installing-nginx-on-ubuntu-dapper-lts-606/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Ruby on Ubuntu Dapper</title>
		<link>http://scoop.simplyexcited.co.uk/2007/11/02/upgrading-ruby-on-ubuntu-dapper/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/11/02/upgrading-ruby-on-ubuntu-dapper/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 08:58:15 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/11/02/upgrading-ruby-on-ubuntu-dapper/</guid>
		<description><![CDATA[	

	Ubuntu Dapper will only install ruby as high as 1.8.4 which is not ideal sometimes. To upgrade an existing ruby installation to 1.8.6 do the following.

	
  sudo apt-get install build-essential
sudo apt-get install libreadline5 libreadline5-dev
wget ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.6.tar.gz
tar -xzf ruby-1.8.6.tar.gz
cd ruby-1.8.6
./configure --prefix=/usr/local --enable-pthread --with-readline-dir=/usr/local
make
sudo make install



	Even if you had rubygems you need to install it and all [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://scoop.simplyexcited.co.uk/wp-content/uploads/2007/11/dapper.jpg" alt="dapper" border="0" /></p>

	<p>Ubuntu Dapper will only install ruby as high as 1.8.4 which is not ideal sometimes. To upgrade an existing ruby installation to 1.8.6 do the following.</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> build-essential
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> libreadline5 libreadline5-dev
<span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #c20cb9; font-weight: bold;">ftp</span>://<span style="color: #c20cb9; font-weight: bold;">ftp</span>.ruby-lang.org/pub/ruby/<span style="color: #000000;">1.8</span>/ruby<span style="color: #000000;">-1.8</span><span style="color: #000000;">.6</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> -xzf ruby<span style="color: #000000;">-1.8</span><span style="color: #000000;">.6</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> ruby<span style="color: #000000;">-1.8</span><span style="color: #000000;">.6</span>
./configure --<span style="color: #007800;">prefix=</span>/usr/<span style="color: #7a0874; font-weight: bold;">local</span> --enable-pthread --with-readline-<span style="color: #007800;">dir=</span>/usr/<span style="color: #7a0874; font-weight: bold;">local</span>
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>
</p>


	<p>Even if you had rubygems you need to install it and all your gems! Again.</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">   <span style="color: #c20cb9; font-weight: bold;">wget</span> http://rubyforge.org/frs/download.php/<span style="color: #000000;">35283</span>/rubygems<span style="color: #000000;">-1.1</span><span style="color: #000000;">.1</span>.tgz
<span style="color: #c20cb9; font-weight: bold;">tar</span> -xzf rubygems<span style="color: #000000;">-1.1</span><span style="color: #000000;">.1</span>.tgz
<span style="color: #7a0874; font-weight: bold;">cd</span> rubygems<span style="color: #000000;">-1.1</span><span style="color: #000000;">.1</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> ruby setup.rb</pre></div></div>
</p>


	<p>Now this is where you need to do a little fix. Openssl will not work out of the box and some application need it so you should just set it up now.</p>

	<p><strong>Note:</strong> If apt-get libssl-dev complains about a not found run: sudo apt-get update</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> libopenssl-ruby
<span style="color: #c20cb9; font-weight: bold;">sudo</span> apt-get <span style="color: #c20cb9; font-weight: bold;">install</span> libssl-dev
&nbsp;
<span style="color: #7a0874; font-weight: bold;">cd</span> ~/src/ruby<span style="color: #000000;">-1.8</span><span style="color: #000000;">.6</span>/ext/openssl
ruby extconf.rb
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>
</p>


	<p>And thats it!</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/11/02/upgrading-ruby-on-ubuntu-dapper/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Apache Configuration Tool</title>
		<link>http://scoop.simplyexcited.co.uk/2007/09/28/apache-configuration-tool/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/09/28/apache-configuration-tool/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 10:16:13 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/09/28/apache-configuration-tool/</guid>
		<description><![CDATA[	

	I have been doing a bit of sysadmin stuff with iformis recently which has involved a bit of virtual host configuration for a number of sites. Although Nginx is top for rails, apache is still the king of PHP.

	We use apache in a debian / ubuntu environment so I have gone and written a wee [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://scoop.simplyexcited.co.uk/wp-content/uploads/2007/09/apache_gunshipflickr.jpg" alt="apache-gunship-flickr" border="0" /></p>

	<p>I have been doing a bit of sysadmin stuff with <a href="http://www.iformis.com" title="">iformis</a> recently which has involved a bit of virtual host configuration for a number of sites. Although Nginx is top for rails, apache is still the king of <span class="caps">PHP</span>.</p>

	<p>We use apache in a debian / ubuntu environment so I have gone and written a wee gem to make vhost configuration a bit easier.</p>

	<p>1. Install apacheconf</p>

	<p><code><br />
sudo gem install apacheconf<br />
</code></p>


	<p>2. Setup <span class="caps">YAML </span>Config</p>

	<p><code><br />
site_name: fun<br />
server_name: fun.com<br />
server_alias: www.fun.com<br />
document_root: /var/www/apps/fun<br />
</code></p>

	<p>3. Run apacheconf</p>

	<p><code><br />
apacheconf --enable fun.yml<br />
</code></p>

	<p>4. There is no step 4!</p>

	<p><img src="http://scoop.simplyexcited.co.uk/wp-content/uploads/2007/09/apacheconf.jpg" alt="Apacheconf" border="0" /></p>

	<p>Please contact me with any issues and ideas for improvements.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/09/28/apache-configuration-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Mysqli Ubuntu Install</title>
		<link>http://scoop.simplyexcited.co.uk/2007/09/26/php-mysqli-ubuntu-install/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/09/26/php-mysqli-ubuntu-install/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 14:32:30 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/09/26/php-mysqli-ubuntu-install/</guid>
		<description><![CDATA[	For installing mysqli extension after PHP is installed on a Linux ubuntu or debian.

	
		apt-get install php5-mysqli
	

	NOTE: after install, you need to reboot apache
	
		apache2ctl graceful
	
 ]]></description>
			<content:encoded><![CDATA[	<p>For installing mysqli extension after <span class="caps">PHP</span> is installed on a Linux ubuntu or debian.</p>

	<ol>
		<li>apt-get install php5-mysqli</li>
	</ol>

	<p><span class="caps">NOTE</span>: after install, you need to reboot apache</p>
	<ol>
		<li>apache2ctl graceful</li>
	</ol>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/09/26/php-mysqli-ubuntu-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Effective Firewall Configuration</title>
		<link>http://scoop.simplyexcited.co.uk/2007/09/21/simple-effective-firewall-configuration/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/09/21/simple-effective-firewall-configuration/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 17:41:29 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/09/21/simple-effective-firewall-configuration/</guid>
		<description><![CDATA[	Simple Configuration

	This allows HTTPS, HTTP and SSH traffic on a non standard port.
 ]]></description>
			<content:encoded><![CDATA[	<p><a href="http://pastie.caboo.se/99465" title="">Simple Configuration</a></p>

	<p>This allows <span class="caps">HTTPS</span>, HTTP and <span class="caps">SSH</span> traffic on a non standard port.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/09/21/simple-effective-firewall-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example Monit Configuration with Mongrel</title>
		<link>http://scoop.simplyexcited.co.uk/2007/09/15/example-monit-configuration-with-mongrel/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/09/15/example-monit-configuration-with-mongrel/#comments</comments>
		<pubDate>Sat, 15 Sep 2007 20:53:43 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/09/15/example-monit-configuration-with-mongrel/</guid>
		<description><![CDATA[	Monit is great for keeping your services online. I use them for keeping my collection of slices online when I am asleep.
The example monitrc is a great starting point of listing the services which you should be monitoring.

	One thing: monit can have its own little http server which runs internally. This is off in the [...]]]></description>
			<content:encoded><![CDATA[	<p>Monit is great for keeping your services online. I use them for keeping my collection of slices online when I am asleep.<br />
The <a href="http://pastie.caboo.se/13355" title="">example monitrc</a> is a great starting point of listing the services which you should be monitoring.</p>

	<p>One thing: monit can have its own little http server which runs internally. This is off in the example config as you have to explicitly enable it.</p>

	<p>I hope to release a monit config generator gem in the near future which makes this a lot quicker.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/09/15/example-monit-configuration-with-mongrel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Email Administration on a VPS (Postfix etc)</title>
		<link>http://scoop.simplyexcited.co.uk/2007/07/25/email-administration-on-a-vps-postfix-etc/</link>
		<comments>http://scoop.simplyexcited.co.uk/2007/07/25/email-administration-on-a-vps-postfix-etc/#comments</comments>
		<pubDate>Wed, 25 Jul 2007 09:55:29 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[email]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2007/07/25/email-administration-on-a-vps-postfix-etc/</guid>
		<description><![CDATA[	

	I have recently been moving some sites from shared hosting to my vps. And one of the benefits of shared hosting is a shiny cpanel installation which provides controls for working with email. Something which a barebones vps installation lacks. (Which is not a bad thing 

	Whilst it is good to have postfix configured so [...]]]></description>
			<content:encoded><![CDATA[	<p><img src="http://scoop.simplyexcited.co.uk/images/email.jpg" /></p>

	<p>I have recently been moving some sites from shared hosting to my vps. And one of the benefits of shared hosting is a shiny cpanel installation which provides controls for working with email. Something which a barebones vps installation lacks. (Which is not a bad thing <img src='http://scoop.simplyexcited.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>

	<p>Whilst it is good to have postfix configured so your site can send email I am now of the mind that it is easier and a better use of resources to outsource the incoming email to google apps.</p>

	<p>It is still free for the time being and all you need to do is add a few MX records to allow google to handle your mail and you are cooking on gas.</p>

	<p>Also there is the ability to create domain aliases, so you can have multiple domains running through one google apps account. (Assuming you want to do this).</p>

	<p>I was too short on time to learn the ins and outs of postfix so im using yet another google web service solved my problems.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2007/07/25/email-administration-on-a-vps-postfix-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

