Trac and closed source - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:16:13Zhttp://stackoverflow.com/feeds/question/264049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/264049/trac-and-closed-source1Trac and closed sourceGlen Low2008-11-05T00:56:14Z2008-11-05T12:19:40Z
<p>I'm working on a closed source (for now) project that I'd like to write a wiki and ticket system about. <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> has a well-integrated wiki and bug/issue-tracking system, and has good integration with Subversion. <a href="http://www.webfaction.com/" rel="nofollow">Webfaction</a> offers Subversion, Trac and a whole lot of programmer-friendly options in a web host. So I'm seriously thinking of using Trac for my project.</p>
<p>One thing concerns me though.</p>
<p>How secure is Trac when I remove permissions to view the sources from various Trac groups? Is there a significant chance that any closed source hosted in the linked Subversion instance would leak out through Trac?</p>
<p>Any of you used Trac for closed source before? What were your experiences?</p>
http://stackoverflow.com/questions/264049/trac-and-closed-source/264276#2642761Answer by torial for Trac and closed sourcetorial2008-11-05T03:28:37Z2008-11-05T03:28:37Z<p>I'm actually using a Track /Subversion setup through Webfaction for a closed-source project. The configuration of Trac is really just a front end for Subversion, so ultimately it will be dependent on Subversion's security (e.g. the .authz file). </p>
<p>A plugin (nothing more than a front end) that will help you in your journey of security configuration: </p>
<ul>
<li><a href="http://trac-hacks.org/wiki/TracSvnAuthzPlugin" rel="nofollow">http://trac-hacks.org/wiki/TracSvnAuthzPlugin</a> </li>
</ul>
http://stackoverflow.com/questions/264049/trac-and-closed-source/264983#2649830Answer by Alex Wilkie for Trac and closed sourceAlex Wilkie2008-11-05T12:19:40Z2008-11-05T12:19:40Z<p>Im using the same setups and the solution i am using is to host the trac as a subdomain - trac.mysite.tdl and svn.mysite.tdl then simply use .htaccess and .htpasswd to secure both of these subdomains to known users.</p>