<?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>kdmurray.blog &#187; web</title>
	<atom:link href="http://kdmurray.net/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://kdmurray.net</link>
	<description>The crossroads of life and tech</description>
	<lastBuildDate>Sun, 20 May 2012 21:42:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Ubuntu School &#8211; Get Rolling with Webmin on Ubuntu Server 11.10</title>
		<link>http://kdmurray.net/2012/02/29/ubuntu-school-get-rolling-with-webmin-on-ubuntu-server-11-10/</link>
		<comments>http://kdmurray.net/2012/02/29/ubuntu-school-get-rolling-with-webmin-on-ubuntu-server-11-10/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 08:19:36 +0000</pubDate>
		<dc:creator>kdmurray</dc:creator>
				<category><![CDATA[Lessons]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[administrative]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webmin]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=1132</guid>
		<description><![CDATA[Even if some Linux purists would have you believe the command-line is the only way to go, the pragmatist in me will always take an appropriate GUI over a complicated command-line any day. You can run a lot of powerful services for your home network using one or more Ubuntu server machines. With the right [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-1117" style="margin: 8px;" title="logo-ubuntu_cof-orange-hex" src="http://kdmurray.net/wp-content/uploads/2012/02/logo-ubuntu_cof-orange-hex-150x150.png" alt="" width="100" height="100" />Even if some Linux purists would have you believe the command-line is the only way to go, the pragmatist in me will always take an appropriate GUI over a complicated command-line any day. You can run a lot of powerful services for your home network using one or more Ubuntu server machines. With the right tools you don&#8217;t need to be a Linux expert to make that happen.</p>

<p>The tool of choice is <a title="Webmin" href="http://webmin.com/" target="_blank">Webmin</a>. This is a set of web-based tools which allow you to control virtually every piece of server-side software on you Ubuntu server. The GUI is intuitive and straight-forward, the documentation is excellent, and the project is under active development.</p>

<p>Because Webmin isn&#8217;t in the standard repositories you will have to do a couple of quick command-line changes to configure your system to be able to find and download the apt package.</p>

<p><code>sudo nano /etc/apt/sources.list</code></p>

<p>Once the file is open, add these lines to the bottom of the file</p>

<p><code>#########################</p>

<h2>Package Sources for Webmin</h2>

<p>deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib</code></p>

<p>Those lines will add the necessary sources to apt for it to find the Webmin package. The Webmin package has also been digitally signed by its author. By default you will need to download the author&#8217;s key so that apt can use it to verify the Webmin package at install time. Fortunately, this is really easy to do.</p>

<p><code>wget http://webmin.com/jcameron-key.asc
sudo apt-key add jcameron-key.asc</code></p>

<p>Now that all the prep work is done, it&#8217;s time to install Webmin.</p>

<p><code>sudo apt-get update
sudo apt-get install webmin</code></p>

<p>All done! Now you can access administrative functions of your server&#8217;s services from the Webmin console: https://yourservername:10000/. This URL is also shown in the last few lines of the apt install details that are ouput to the command-line.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2012/02/29/ubuntu-school-get-rolling-with-webmin-on-ubuntu-server-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting Your Website (URL Redirection)</title>
		<link>http://kdmurray.net/2009/03/17/redirecting-your-website-url-redirection/</link>
		<comments>http://kdmurray.net/2009/03/17/redirecting-your-website-url-redirection/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 09:05:00 +0000</pubDate>
		<dc:creator>kdmurray</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[repoint]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://kdmurray.net/?p=594</guid>
		<description><![CDATA[It&#8217;s late, and I&#8217;m tired, so this is gonna be a short post.  I got a question from @Mattoid12 on twitter tonight about how to redirect a website.  I&#8217;m going to show three ways, and then provide a link to a site which shows every conceivable way of redirecting a website. .htaccess File If you [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s late, and I&#8217;m tired, so this is gonna be a short post.  I got a question from <a href="http://twitter.com/mattoid12" target="_blank">@Mattoid12</a> on twitter tonight about how to redirect a website.  I&#8217;m going to show three ways, and then provide a link to a site which shows every conceivable way of redirecting a website.</p>

<h3>.htaccess File</h3>

<p>If you have access to edit your .htaccess file (FTP or SSH access to your server) put this line at the top.  It will redirect the local url &#8220;/&#8221; (root) to the new location.  More on <a href="http://en.wikipedia.org/wiki/HTTP_301" target="_blank">HTTP 301</a> here.  I&#8217;ve discussed this in more detail on <a href="http://kdmurray.net/2009/01/23/moving-redirect-with-htaccess-and-301/" target="_blank">a previous post</a>.</p>

<p><code>Redirect 301 / http://yournewwebsite.net/</code></p>

<h3>HTML Meta Tag</h3>

<p>The example below will redirect a page to the new location after two seconds.  This code should be placed at the top of your index or default page.</p>

<p><code>&lt;meta http-equiv="refresh" content="2;url=http://yournewwebsite.net"&gt;</code></p>

<h3>PHP Redirect</h3>

<p>This method is sort of a combination of the above two approaches.  It will perform an instant redirect and return HTTP 301 to the browser.  This code needs to be entered in your index.php file.</p>

<p><code>&lt;?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://yournewwebsite.net" );
?&gt; </code></p>

<p>For examples of a large number of other possible redirects are available on <a href="http://www.webconfs.com/how-to-redirect-a-webpage.php" target="_blank">webconfs.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kdmurray.net/2009/03/17/redirecting-your-website-url-redirection/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 388/396 objects using disk: basic

Served from: kdmurray.net @ 2012-05-23 22:59:11 -->
