<?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>Agilo.us &#187; System Administration</title>
	<atom:link href="http://agilo.us/category/system-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://agilo.us</link>
	<description>Trying to remain agile in a BIG design world.</description>
	<lastBuildDate>Fri, 16 Apr 2010 06:03:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Force SSL in Apache</title>
		<link>http://agilo.us/2010/01/31/force-ssl-in-apache/</link>
		<comments>http://agilo.us/2010/01/31/force-ssl-in-apache/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 06:05:55 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[System Administration]]></category>

		<guid isPermaLink="false">http://agilo.us/?p=58</guid>
		<description><![CDATA[This is nothing Earth shattering but it seems that this has come up quite a bit lately and I wanted a place to keep the information handy. So here it is:
If you want to force the use of SSL for a specific site, place this configuration in the .htaccess file in the document root.

&#60;IfModule !mod_rewrite.c&#62;
	LoadModule [...]]]></description>
			<content:encoded><![CDATA[<p>This is nothing Earth shattering but it seems that this has come up quite a bit lately and I wanted a place to keep the information handy. So here it is:</p>
<p>If you want to force the use of SSL for a specific site, place this configuration in the .htaccess file in the document root.</p>
<pre>
&lt;IfModule !mod_rewrite.c&gt;
	LoadModule rewrite_module modules/mod_rewrite.so
&lt;/IfModule&gt;
&lt;IfModule mod_rewrite.c&gt;
	RewriteEngine on
	RewriteCond %{SERVER_PORT} !^443$
	RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L]
&lt;/IfModule&gt;
</pre>
<p>Care to recommend an alternate solution?</p>
]]></content:encoded>
			<wfw:commentRss>http://agilo.us/2010/01/31/force-ssl-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
