<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Configuring CakePHP to Work With Nginx</title>
	<atom:link href="http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/</link>
	<description>Facebook should&#039;ve be written in unicornSchemaLang, because everyone *knows* that PHP is no good for anything, right?</description>
	<lastBuildDate>Mon, 09 Aug 2010 16:04:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: J</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/comment-page-1/#comment-10593</link>
		<dc:creator>J</dc:creator>
		<pubDate>Tue, 15 Jul 2008 02:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/#comment-10593</guid>
		<description>Thanks! I managed to get your code working when Cake was in the root, but when I moved cake to a subdirectory (wwww.mydomain.com/myapp) it broke.  I tried playing around with different things but can&#039;t seem to get it to work.  Any help would be much appreciated :)</description>
		<content:encoded><![CDATA[<p>Thanks! I managed to get your code working when Cake was in the root, but when I moved cake to a subdirectory (wwww.mydomain.com/myapp) it broke.  I tried playing around with different things but can&#8217;t seem to get it to work.  Any help would be much appreciated <img src='http://www.littlehart.net/atthekeyboard/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Perrett</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/comment-page-1/#comment-9254</link>
		<dc:creator>Tim Perrett</dc:creator>
		<pubDate>Tue, 22 Apr 2008 11:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/#comment-9254</guid>
		<description>I had difficulty getting your solution to work, so came up with my own - perhaps this might be of interest to someone:

http://blog.timperrett.com/2008/4/17/nginx-engine-x-rewrite-rules-for-cakephp

Cheers, Tim</description>
		<content:encoded><![CDATA[<p>I had difficulty getting your solution to work, so came up with my own &#8211; perhaps this might be of interest to someone:</p>
<p><a href="http://blog.timperrett.com/2008/4/17/nginx-engine-x-rewrite-rules-for-cakephp" rel="nofollow">http://blog.timperrett.com/2008/4/17/nginx-engine-x-rewrite-rules-for-cakephp</a></p>
<p>Cheers, Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Hartjes</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/comment-page-1/#comment-9143</link>
		<dc:creator>Chris Hartjes</dc:creator>
		<pubDate>Sat, 19 Apr 2008 17:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/#comment-9143</guid>
		<description>@Charl

It&#039;s not missing /app because I have the Cake core outside of the directory I serve my web apps from, and all my Cake apps are in their own &#039;app&#039; directory.  Hence, why there&#039;s no /app in front of webroot.</description>
		<content:encoded><![CDATA[<p>@Charl</p>
<p>It&#8217;s not missing /app because I have the Cake core outside of the directory I serve my web apps from, and all my Cake apps are in their own &#8216;app&#8217; directory.  Hence, why there&#8217;s no /app in front of webroot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charl Matthee</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/comment-page-1/#comment-9126</link>
		<dc:creator>Charl Matthee</dc:creator>
		<pubDate>Sat, 19 Apr 2008 08:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/#comment-9126</guid>
		<description>I am currently using cake_1.1.19.6305 and your first rewrite rule seems to be missing /app before /webroot:

location / {
	index index.php;
	if (!-e $request_filename) {
		rewrite ^/(.+)$ /app/webroot/$1 last;
		break;
	}
}</description>
		<content:encoded><![CDATA[<p>I am currently using cake_1.1.19.6305 and your first rewrite rule seems to be missing /app before /webroot:</p>
<p>location / {<br />
	index index.php;<br />
	if (!-e $request_filename) {<br />
		rewrite ^/(.+)$ /app/webroot/$1 last;<br />
		break;<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Perrett</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/comment-page-1/#comment-9079</link>
		<dc:creator>Tim Perrett</dc:creator>
		<pubDate>Thu, 17 Apr 2008 16:21:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/09/14/configuring-cakephp-to-work-with-nginx/#comment-9079</guid>
		<description>Hey, great article - are you able to post the entire vhost config for that site, as just those rules dont make much sense unless there in context.

Im trying to do exactly the same at the moment, however without much luck - seeing the whole config for the vhost would be really helpfull :-)

Cheers, TP</description>
		<content:encoded><![CDATA[<p>Hey, great article &#8211; are you able to post the entire vhost config for that site, as just those rules dont make much sense unless there in context.</p>
<p>Im trying to do exactly the same at the moment, however without much luck &#8211; seeing the whole config for the vhost would be really helpfull <img src='http://www.littlehart.net/atthekeyboard/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Cheers, TP</p>
]]></content:encoded>
	</item>
</channel>
</rss>
