<?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: Nginx userdir list</title>
	<atom:link href="http://drakonen.com/2008/nginx-userdir-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://drakonen.com/2008/nginx-userdir-list/</link>
	<description>Here be Dragons  -  Drakonen&#039;s Blog</description>
	<lastBuildDate>Mon, 23 Jan 2012 12:35:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: charles</title>
		<link>http://drakonen.com/2008/nginx-userdir-list/comment-page-1/#comment-3417</link>
		<dc:creator>charles</dc:creator>
		<pubDate>Sun, 02 Nov 2008 23:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://drakonen.digigen.nl/blog/2008/nginx-userdir-list/#comment-3417</guid>
		<description>Here&#039;s a solution that works when you omit the trailing slash after directories:

http://blog.sbf5.com/?p=6</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a solution that works when you omit the trailing slash after directories:</p>
<p><a href="http://blog.sbf5.com/?p=6" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/blog.sbf5.com/?p=6&amp;referer=');">http://blog.sbf5.com/?p=6</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SbF₅ &#187; Blog Archive &#187; User-based Website Directories with Nginx</title>
		<link>http://drakonen.com/2008/nginx-userdir-list/comment-page-1/#comment-3416</link>
		<dc:creator>SbF₅ &#187; Blog Archive &#187; User-based Website Directories with Nginx</dc:creator>
		<pubDate>Sat, 01 Nov 2008 06:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://drakonen.digigen.nl/blog/2008/nginx-userdir-list/#comment-3416</guid>
		<description>[...] One website recommended using Nginx&#8217;s rewrite rules to emulate user-based website directories. This worked fairly well, except for one problem. Nginx has this internal behavior of fixing URL requests for directories so that they have a trailing slash. But when a rewrite rule was applied first, the fixed URL, presented to the web browser, was the rewritten location (with the trailing slash). [...]</description>
		<content:encoded><![CDATA[<p>[...] One website recommended using Nginx&#8217;s rewrite rules to emulate user-based website directories. This worked fairly well, except for one problem. Nginx has this internal behavior of fixing URL requests for directories so that they have a trailing slash. But when a rewrite rule was applied first, the fixed URL, presented to the web browser, was the rewritten location (with the trailing slash). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drakonen</title>
		<link>http://drakonen.com/2008/nginx-userdir-list/comment-page-1/#comment-3401</link>
		<dc:creator>Drakonen</dc:creator>
		<pubDate>Tue, 15 Jul 2008 19:11:32 +0000</pubDate>
		<guid isPermaLink="false">http://drakonen.digigen.nl/blog/2008/nginx-userdir-list/#comment-3401</guid>
		<description>Does not work, for me at least it redirects to the root dir.</description>
		<content:encoded><![CDATA[<p>Does not work, for me at least it redirects to the root dir.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://drakonen.com/2008/nginx-userdir-list/comment-page-1/#comment-3400</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Tue, 08 Jul 2008 22:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://drakonen.digigen.nl/blog/2008/nginx-userdir-list/#comment-3400</guid>
		<description>what if someone does site.com/~lusers/../
they&#039;d see a list of users on the system, no?</description>
		<content:encoded><![CDATA[<p>what if someone does site.com/~lusers/../<br />
they&#8217;d see a list of users on the system, no?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beate</title>
		<link>http://drakonen.com/2008/nginx-userdir-list/comment-page-1/#comment-3392</link>
		<dc:creator>Beate</dc:creator>
		<pubDate>Wed, 28 May 2008 10:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://drakonen.digigen.nl/blog/2008/nginx-userdir-list/#comment-3392</guid>
		<description>Hi, maybe i found a bug?

According to the nginx rewrite examples, &quot;last&quot; in the rewrite rule must be replaced by &quot;break&quot; if the location is given as above. Actually that change lead to a woring setup in my installation. Example (yes, i additionally adhered to the traditional public_html convention) :
&lt;code&gt;
        location ~ /~([a-zA-Z0-9]*)/(.*) {
            # the [a-zA-Z0-9] is for the greedy .
            root /home/;
            ### autoindex on;
            index index.html;
            rewrite ^/~([a-zA-Z0-9]*)/(.*)$ /$1/public_html/$2 break;
        }
&lt;/code&gt;

maybe You fix this for the other readers? 

THX

Beate</description>
		<content:encoded><![CDATA[<p>Hi, maybe i found a bug?</p>
<p>According to the nginx rewrite examples, &#8220;last&#8221; in the rewrite rule must be replaced by &#8220;break&#8221; if the location is given as above. Actually that change lead to a woring setup in my installation. Example (yes, i additionally adhered to the traditional public_html convention) :<br />
<code><br />
        location ~ /~([a-zA-Z0-9]*)/(.*) {<br />
            # the [a-zA-Z0-9] is for the greedy .<br />
            root /home/;<br />
            ### autoindex on;<br />
            index index.html;<br />
            rewrite ^/~([a-zA-Z0-9]*)/(.*)$ /$1/public_html/$2 break;<br />
        }<br />
</code></p>
<p>maybe You fix this for the other readers? </p>
<p>THX</p>
<p>Beate</p>
]]></content:encoded>
	</item>
</channel>
</rss>

