<?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>FVN Tech Blog &#187; apache</title>
	<atom:link href="http://blog.feuvan.net/tag/apache/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.feuvan.net</link>
	<description>Interoperability &#124; Coding, Programming in C#/PHP &#124; Linux, Windows Server Backend &#124;  New Media &#124; SNS &#124; Misc ...</description>
	<lastBuildDate>Fri, 06 Aug 2010 00:31:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>apache2.0.x -&gt; apache2.2.x 的认证模块变化</title>
		<link>http://blog.feuvan.net/2006/10/25/56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html</link>
		<comments>http://blog.feuvan.net/2006/10/25/56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html#comments</comments>
		<pubDate>Wed, 25 Oct 2006 06:44:04 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://feuvan.net/wordpress/?p=56</guid>
		<description><![CDATA[Mars:/opt/trac# apache2ctl -M……auth_basic_module (shared)authn_file_module (shared)authz_host_module (shared)authz_user_module (shared)authz_svn_module (shared)……相对于2.0，2.2的身份和权限控制更加精细当然这也是一大进步 刚刚升级到2.2的时候可能会不太习惯原来的配置文件很可能出错对于普通大众最常用的AuthType Basic + htpasswd格式密码文件来说以下模块是需要加载的auth_basic，用于basic方式认证authn_file，提供基于文件的认证方式，其他还有dbm，dbd，ldap等。在配置中加入AuthBasicProvider file启用这个module由于这也是默认的Basic认证方式所以也可以不写这行配置，和2.0配置文件兼容authz_user，Require valid-user这样的配置需要这个module加载了这些module之后基本就可以和以前一样工作了 authn是认证支持模块共有authn_alias，authz_anon，authz_dbd，authz_dbm，authz_default，authz_file六个模块具体用法可以查看官方网站的解释 authz是授权支持模块共有authz_dbm，authz_default，authz_groupfile，authz_host，authz_owner，authz_user六个模块 authnz是认证和授权做在一起，只有一个authnz_ldapauth_basic，然后用AuthBasicProvider ldap调用 另外，授权支持模块中authz_host提供了Order allow,deny的基于主机名，IP或者环境变量认证Order Allow,DenyAllow from 10.10.1.0/24, feuvan.netDeny from all 至于那个authz_svn是给svn认证用的。。不知道是什么的就忽略我说的话吧我就是在升级的时候svn和trac出错才来折腾的 Apache2 越来越高级配置越来越复杂难怪那么多轻量级的应用转向 lighttpd 了期待 lighttpd 1.5]]></description>
			<content:encoded><![CDATA[</p>
<p>Mars:/opt/trac# apache2ctl -M<br />……<br />auth_basic_module (shared)<br />authn_file_module (shared)<br />authz_host_module (shared)<br />authz_user_module (shared)<br />authz_svn_module (shared)<br />……<br />相对于2.0，2.2的身份和权限控制更加精细<br />当然这也是一大进步 </p>
<p>刚刚升级到2.2的时候可能会不太习惯<br />原来的配置文件很可能出错<br />对于普通大众最常用的AuthType Basic + htpasswd格式密码文件来说<br />以下模块是需要加载的<br />auth_basic，用于basic方式认证<br />authn_file，提供基于文件的认证方式，其他还有dbm，dbd，ldap等。<br />在配置中加入AuthBasicProvider file启用这个module<br />由于这也是默认的Basic认证方式<br />所以也可以不写这行配置，和2.0配置文件兼容<br />authz_user，Require valid-user这样的配置需要这个module<br />加载了这些module之后基本就可以和以前一样工作了</p>
<p>authn是认证支持模块<br />共有authn_alias，authz_anon，authz_dbd，authz_dbm，authz_default，authz_file六个模块<br />具体用法可以查看官方网站的解释</p>
<p>authz是授权支持模块<br />共有authz_dbm，authz_default，authz_groupfile，authz_host，authz_owner，authz_user六个模块</p>
<p>authnz是认证和授权做在一起，只有一个authnz_ldap<br />auth_basic，然后用AuthBasicProvider ldap调用</p>
<p>另外，授权支持模块中<br />authz_host提供了Order allow,deny的基于主机名，IP或者环境变量认证<br />Order Allow,Deny<br />Allow from 10.10.1.0/24, feuvan.net<br />Deny from all</p>
<p>至于那个authz_svn是给svn认证用的。。<br />不知道是什么的就忽略我说的话吧<br />我就是在升级的时候svn和trac出错才来折腾的</p>
<p>Apache2 越来越高级配置越来越复杂<br />难怪那么多轻量级的应用转向 lighttpd 了<br />期待 lighttpd 1.5</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html&amp;title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html&amp;title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html&amp;title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html&amp;headline=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html&amp;title=apache2.0.x+-%26gt%3B+apache2.2.x+%E7%9A%84%E8%AE%A4%E8%AF%81%E6%A8%A1%E5%9D%97%E5%8F%98%E5%8C%96&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F10%2F25%2F56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2006/10/25/56-auth-mod-changes-between-apache2-0-x-apache2-2-x.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>多个Project的trac/subversion/apache2 架设</title>
		<link>http://blog.feuvan.net/2006/05/29/38-serve-multi-projects-on-trac-subversion-apache2.html</link>
		<comments>http://blog.feuvan.net/2006/05/29/38-serve-multi-projects-on-trac-subversion-apache2.html#comments</comments>
		<pubDate>Sun, 28 May 2006 21:22:48 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[trac]]></category>

		<guid isPermaLink="false">http://feuvan.net/wordpress/?p=38</guid>
		<description><![CDATA[cd /opt/repos svnadmin create Akantos svnadmin create test chown -R www-data:www-data /opt/repos cd /opt/trac trac-admin /opt/repos/Akantos initenv trac-admin /opt/repos/test initenv chown -R www-data:www-data /opt/trac moonlight:~# cat /etc/apache2/conf.d/trac.conf Alias /trac/chrome/common /usr/share/trac/htdocs Order allow,deny Allow from all ScriptAlias /trac /usr/share/trac/cgi-bin/trac.cgi # SetEnv &#8230; <a href="http://blog.feuvan.net/2006/05/29/38-serve-multi-projects-on-trac-subversion-apache2.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>
cd /opt/repos<br />
svnadmin create Akantos<br />
svnadmin create test<br />
chown -R www-data:www-data /opt/repos</p>
<p>cd /opt/trac<br />
trac-admin /opt/repos/Akantos initenv<br />
trac-admin /opt/repos/test initenv<br />
chown -R www-data:www-data /opt/trac</p>
<p>
moonlight:~# cat /etc/apache2/conf.d/trac.conf <br />
Alias /trac/chrome/common /usr/share/trac/htdocs</p>
<p>        Order allow,deny<br />
        Allow from all</p>
<p>ScriptAlias /trac /usr/share/trac/cgi-bin/trac.cgi</p>
<p>#       SetEnv TRAC_ENV &#8220;/opt/trac/&#8221;<br />
        SetEnv TRAC_ENV_PARENT_DIR &#8220;/opt/trac&#8221;</p>
<p> # 设置Trac用户验证<br />
        AuthType Basic<br />
        AuthName &#8220;Mars Trac Server&#8221;<br />
        AuthUserFile /etc/apache2/trac.passwd<br />
        # trac.passwd文件用htpasswd2命令生成<br />
        Require valid-user</p>
<p>moonlight:~# cat /etc/apache2/mods-enabled/dav_svn.conf </p>
<p>  DAV svn<br />
  SVNParentPath /opt/repos</p>
<p>  AuthType Basic<br />
  AuthName &#8220;MicroInfo Repository&#8221;<br />
  AuthUserFile /etc/apache2/dav_svn.passwd<br />
  Require valid-user<br />
  AuthzSVNAccessFile /etc/apache2/dav_svn.authz</p>
<p>moonlight:~# cat /etc/apache2/dav_svn.authz                   <br />
[groups]<br />
manager = feuvan<br />
[/]<br />
@manager = rw<br />
* = <br />
[Akantos:/]</p>
<p>[test:/]<br />
* = rw				]]&gt;</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html&amp;title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html&amp;title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html&amp;title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html&amp;headline=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html&amp;title=%E5%A4%9A%E4%B8%AAProject%E7%9A%84trac%2Fsubversion%2Fapache2+%E6%9E%B6%E8%AE%BE&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2006%2F05%2F29%2F38-serve-multi-projects-on-trac-subversion-apache2.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2006/05/29/38-serve-multi-projects-on-trac-subversion-apache2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
