<?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>Kim Ellefsen</title>
	<atom:link href="http://www.kimellefsen.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kimellefsen.com</link>
	<description>Interactive Designer and Developer</description>
	<lastBuildDate>Thu, 29 Dec 2011 19:50:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Front-page redesign of Dyreparken.no</title>
		<link>http://www.kimellefsen.com/2011/12/front-page-redesign-of-dyreparken-no/</link>
		<comments>http://www.kimellefsen.com/2011/12/front-page-redesign-of-dyreparken-no/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 14:48:19 +0000</pubDate>
		<dc:creator>kime</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.kimellefsen.com/?p=35</guid>
		<description><![CDATA[A complete redesign of the front-page for Kristiansand Dyrepark done in November 2011.]]></description>
			<content:encoded><![CDATA[<p>A complete redesign of the front-page for Kristiansand Dyrepark done in November 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimellefsen.com/2011/12/front-page-redesign-of-dyreparken-no/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>D12 Sykler</title>
		<link>http://www.kimellefsen.com/2011/12/d12-sykler/</link>
		<comments>http://www.kimellefsen.com/2011/12/d12-sykler/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 18:34:29 +0000</pubDate>
		<dc:creator>kime</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.kimellefsen.com/?p=55</guid>
		<description><![CDATA[Shopify design for our bike store at Dot Grid. Identity by Tony Næss, webdesign and Shopify integration was done by me.]]></description>
			<content:encoded><![CDATA[<p>Shopify design for our bike store at Dot Grid. Identity by Tony Næss, webdesign and Shopify integration was done by me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimellefsen.com/2011/12/d12-sykler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx rewrite rules for WordPress MU with subdomains</title>
		<link>http://www.kimellefsen.com/2011/12/nginx-rewrite-rules-for-wordpress-mu-with-subdomains/</link>
		<comments>http://www.kimellefsen.com/2011/12/nginx-rewrite-rules-for-wordpress-mu-with-subdomains/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 17:43:19 +0000</pubDate>
		<dc:creator>kime</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ec2-176-34-201-10.eu-west-1.compute.amazonaws.com/?p=10</guid>
		<description><![CDATA[I had a really hard time trying to figure out the rewrite rules for WordPress MU using Nginx. This is what worked for me. # This is cool because no php is touched for static content try_files $uri $uri/ /index.php?q=$uri&#38;amp;$args; #rewrite for blog files rewrite ^.*/files/(.*) /wp-includes/ms-files.php?file=$1 last; if (!-e $request_filename) { rewrite ^.+/?(/wp-.*) $1 [...]]]></description>
			<content:encoded><![CDATA[<p>I had a really hard time trying to figure out the rewrite rules for WordPress MU using Nginx. This is what worked for me.</p>
<div class="code">
<pre class="brush: bash"># This is cool because no php is touched for static content
try_files $uri $uri/ /index.php?q=$uri&amp;amp;$args;

#rewrite for blog files
rewrite ^.*/files/(.*) /wp-includes/ms-files.php?file=$1 last;

if (!-e $request_filename) {
        rewrite ^.+/?(/wp-.*) $1 last;
        rewrite ^.+/?(/.*\.php)$ $1 last;
       rewrite ^(.+)$ /index.php?q=$1 last;
}</pre>
</div>
<p>I tried everything, and this is the only thing that worked for me on WordPress 3.0.4. I placed this outside of the location directive, and directly into server {</p>
<p>To make /wp-admin work, I added a rewrite rule that would redirect any access to /wp-admin to the main site url /wp-admin/. Works good for single user sites, but fails off course on a multiuser setup.</p>
<div class="code">
<pre class="brush: bash">rewrite ^/(.+/)?wp-admin$ http://domain1.com/$1wp-admin/ permanent;</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kimellefsen.com/2011/12/nginx-rewrite-rules-for-wordpress-mu-with-subdomains/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bolig Enøk website</title>
		<link>http://www.kimellefsen.com/2011/12/bolig-enok/</link>
		<comments>http://www.kimellefsen.com/2011/12/bolig-enok/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 17:35:41 +0000</pubDate>
		<dc:creator>kime</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://ec2-176-34-201-10.eu-west-1.compute.amazonaws.com/?p=4</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.kimellefsen.com/2011/12/bolig-enok/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual essay on Dubai</title>
		<link>http://www.kimellefsen.com/2011/12/visual-essay-on-dubai/</link>
		<comments>http://www.kimellefsen.com/2011/12/visual-essay-on-dubai/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 18:38:57 +0000</pubDate>
		<dc:creator>kime</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://ec2-176-34-201-10.eu-west-1.compute.amazonaws.com/?p=13</guid>
		<description><![CDATA[This was my final project in Motion graphics while studying at the Academy of Art University.]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/11931799?title=0&amp;byline=0&amp;portrait=0" frameborder="0" width="640" height="360"></iframe></p>
<p>This was my final project in Motion graphics while studying at the Academy of Art University.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimellefsen.com/2011/12/visual-essay-on-dubai/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Website for NSO</title>
		<link>http://www.kimellefsen.com/2011/12/website-for-nso/</link>
		<comments>http://www.kimellefsen.com/2011/12/website-for-nso/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 18:39:08 +0000</pubDate>
		<dc:creator>kime</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.kimellefsen.com/?p=62</guid>
		<description><![CDATA[student.no]]></description>
			<content:encoded><![CDATA[<p>student.no</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kimellefsen.com/2011/12/website-for-nso/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

