<?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; Sysadmin</title>
	<atom:link href="http://scoop.simplyexcited.co.uk/category/sysadmin/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 Java on Ubuntu Intrepid</title>
		<link>http://scoop.simplyexcited.co.uk/2010/04/22/installing-java-on-ubuntu-intrepid/</link>
		<comments>http://scoop.simplyexcited.co.uk/2010/04/22/installing-java-on-ubuntu-intrepid/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 12:19:12 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://scoop.simplyexcited.co.uk/2010/04/22/installing-java-on-ubuntu-intrepid/</guid>
		<description><![CDATA[	Always doing this on different ubuntu versions and always having to look it up.

	Here is a guide for Ubuntu Intrepid
 ]]></description>
			<content:encoded><![CDATA[	<p>Always doing this on different ubuntu versions and always having to look it up.</p>

	<p><a href="http://www.javadesign.info/SystemsHardware/OS/Ubuntu/install-java-on-ubuntu" title="">Here is a guide for Ubuntu Intrepid</a></p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2010/04/22/installing-java-on-ubuntu-intrepid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ghost</title>
		<link>http://scoop.simplyexcited.co.uk/2009/06/23/ghost/</link>
		<comments>http://scoop.simplyexcited.co.uk/2009/06/23/ghost/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 11:48:50 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2009/06/23/ghost/</guid>
		<description><![CDATA[	

	Ghost is a nice way to configure your development machine for subdomain based application access.
 ]]></description>
			<content:encoded><![CDATA[	<p><img src="http://farm1.static.flickr.com/103/251834750_8a71a7fca2_d.jpg" alt="" border="0" /></p>

	<p><a href="http://github.com/bjeanes/ghost/tree/master" title="">Ghost</a> is a nice way to configure your development machine for subdomain based application access.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2009/06/23/ghost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using mod_expires to speed up serving pages with apache</title>
		<link>http://scoop.simplyexcited.co.uk/2009/05/21/using-mod_expires-to-speed-up-serving-pages-with-apache/</link>
		<comments>http://scoop.simplyexcited.co.uk/2009/05/21/using-mod_expires-to-speed-up-serving-pages-with-apache/#comments</comments>
		<pubDate>Thu, 21 May 2009 15:43:24 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2009/05/21/using-mod_expires-to-speed-up-serving-pages-with-apache/</guid>
		<description><![CDATA[	This is rails specific to a certain extend and involves setting the expires header on static asset to make browsers cache. This can be dangerous so is best used with timestamped css and javascript assets.

	By default: rails helpers will add a timestamp onto the end of the asset so when you redeploy the file the [...]]]></description>
			<content:encoded><![CDATA[	<p>This is rails specific to a certain extend and involves setting the expires header on static asset to make browsers cache. This can be dangerous so is best used with timestamped css and javascript assets.</p>

	<p>By default: rails helpers will add a timestamp onto the end of the asset so when you redeploy the file the browsers will recache the file because the timestamp has changed.</p>

	<p>eg.</p>

	<p>
<div class="wp_syntax"><div class="code"><pre>  &lt;script src=&quot;/javascripts/all.js?1242919746&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></div></div>
</p>



	<p>To setup mod_expires apache on debian based:</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> a2enmod expires</pre></div></div>
</p>



	<p>Then in your config</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  ExpiresActive On
  &lt;FilesMatch <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\.</span>(js|css)$&quot;</span>&gt;
    ExpiresDefault <span style="color: #ff0000;">&quot;access plus 1 year&quot;</span>
  &lt;/FilesMatch&gt;</pre></div></div>
</p>



	<p>You can easily add image types to this as well but often css loads images and designer often forget to use these helper methods. So in the real world just doing it with js and css makes it safer to do with maximum performance gain.</p>
 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2009/05/21/using-mod_expires-to-speed-up-serving-pages-with-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turning on mod_deflate to speed up apache</title>
		<link>http://scoop.simplyexcited.co.uk/2009/05/20/turning-on-mod_deflate-to-speed-up-apache/</link>
		<comments>http://scoop.simplyexcited.co.uk/2009/05/20/turning-on-mod_deflate-to-speed-up-apache/#comments</comments>
		<pubDate>Wed, 20 May 2009 13:38:38 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2009/05/20/turning-on-mod_deflate-to-speed-up-apache/</guid>
		<description><![CDATA[	When doing some performance tuning for iformis I have noticed a lot of HTTP overhead in serving pages in modern web applications. This is often due to image heavy designs, large javascript libraries and since the average connection speed of clients has increased, asset number and size are being pushed to the background.

	By default apache [...]]]></description>
			<content:encoded><![CDATA[	<p>When doing some performance tuning for <a href="http://www.iformis.com" title="">iformis</a> I have noticed a lot of <span class="caps">HTTP</span> overhead in serving pages in modern web applications. This is often due to image heavy designs, large javascript libraries and since the average connection speed of clients has increased, asset number and size are being pushed to the background.</p>

	<p>By default apache does not perform gzip compression. I recently turned this on and along with a small increase in load I noticed a large performance increase from the client side.</p>

	<p>To turn it on (debian / ubuntu)</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  <span style="color: #c20cb9; font-weight: bold;">sudo</span> a2enmod deflate</pre></div></div>
</p>



	<p>Now im not a fan of copy and paste configs but included below is the mod_deflate config I am currently using. At least read it before using. (Doesnt gzip certain file type and turns off some gzipping for older browsers.)</p>

	<p>
<div class="wp_syntax"><div class="code"><pre class="bash">  SetOutputFilter DEFLATE
  SetEnvIfNoCase Request_URI \.<span style="color: #7a0874; font-weight: bold;">&#40;</span>?:gif|jpe?g|png<span style="color: #7a0874; font-weight: bold;">&#41;</span>$ \
      no-<span style="color: #c20cb9; font-weight: bold;">gzip</span> dont-vary
  SetEnvIfNoCase Request_URI \
      \.<span style="color: #7a0874; font-weight: bold;">&#40;</span>?:exe|t?gz|zip|bz2|sit|rar<span style="color: #7a0874; font-weight: bold;">&#41;</span>$ \
      no-<span style="color: #c20cb9; font-weight: bold;">gzip</span> dont-vary
  SetEnvIfNoCase Request_URI \.pdf$ no-<span style="color: #c20cb9; font-weight: bold;">gzip</span> dont-vary
&nbsp;
  BrowserMatch ^Mozilla/<span style="color: #000000;">4</span> gzip-only-text/html
  BrowserMatch ^Mozilla/<span style="color: #000000;">4</span>\.<span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #000000;">678</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> no-<span style="color: #c20cb9; font-weight: bold;">gzip</span>
  BrowserMatch \bMSIE !no-<span style="color: #c20cb9; font-weight: bold;">gzip</span> !gzip-only-text/html</pre></div></div>
</p>


 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2009/05/20/turning-on-mod_deflate-to-speed-up-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading monit on ubuntu dapper</title>
		<link>http://scoop.simplyexcited.co.uk/2009/04/20/upgrading-monit-on-ubuntu-dapper/</link>
		<comments>http://scoop.simplyexcited.co.uk/2009/04/20/upgrading-monit-on-ubuntu-dapper/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 12:22:49 +0000</pubDate>
		<dc:creator>pyrat</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://scoop.cheerfactory.co.uk/2009/04/20/upgrading-monit-on-ubuntu-dapper/</guid>
		<description><![CDATA[	

	Monit in the ubuntu dapper repositories is a bit old. I found the following to work
for me.

	
  sudo apt-get install libssl-dev build-essential bison flex
  wget http://mmonit.com/monit/dist/old/monit-4.9.tar.gz
  tar xvzf monit-4.9.tar.gz
  cd monit-4.9/
  ./configure &#38;&#38; make &#38;&#38; sudo make install



 ]]></description>
			<content:encoded><![CDATA[	<p><img src="http://img.skitch.com/20090420-rx2ya2eb76wjp3wduq5inq9f3c.jpg" alt="" border="0" /></p>

	<p>Monit in the ubuntu dapper repositories is a bit old. I found the following to work<br />
for me.</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> libssl-dev build-essential <span style="color: #c20cb9; font-weight: bold;">bison</span> <span style="color: #c20cb9; font-weight: bold;">flex</span>
  <span style="color: #c20cb9; font-weight: bold;">wget</span> http://mmonit.com/monit/dist/old/monit<span style="color: #000000;">-4.9</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
  <span style="color: #c20cb9; font-weight: bold;">tar</span> xvzf monit<span style="color: #000000;">-4.9</span>.<span style="color: #c20cb9; font-weight: bold;">tar</span>.gz
  <span style="color: #7a0874; font-weight: bold;">cd</span> monit<span style="color: #000000;">-4.9</span>/
  ./configure &amp;&amp; <span style="color: #c20cb9; font-weight: bold;">make</span> &amp;&amp; <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>


 ]]></content:encoded>
			<wfw:commentRss>http://scoop.simplyexcited.co.uk/2009/04/20/upgrading-monit-on-ubuntu-dapper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

