Hi Markus; I installed Trac and Apache 2.2 on OS X Server 10.4.3 a few weeks ago using the trac darwinport. ================== osx-server:~ blacey$ port info trac trac 0.9.2, devel/trac Trac is an enhanced wiki and issue tracking system for software development projects. Trac uses a minimalistic approach to web-based software project management. Library Dependencies: subversion-pythonbindings, clearsilver, py-sqlite, python24, sqlite3 Platforms: darwin Maintainers: [EMAIL PROTECTED] ================== Installation steps: 1) sudo port install apache2 2) sudo port install subversion +mod_dav_svn 3) sudo port install mod_python 4) sudo port install trac Here is the trac configuration from my httpd.conf <VirtualHost *> ServerName projects.<domain>.com DocumentRoot "/Projects/Trac" # # Trac mod_python configuration # Alias /trachtdocs/ "/opt/local/share/trac/htdocs/" <Location /trac> SetHandler mod_python #PythonHandler trac.ModPythonHandler PythonHandler trac.web.modpython_frontend PythonOption TracUriRoot "/trac" PythonOption TracEnvParentDir "/Projects/Trac" </Location> <LocationMatch /trac/[[:alnum:]]+/login> AuthType Basic AuthName "Trac" AuthUserFile "/opt/local/etc/trac-auth-file" Require valid-user </LocationMatch> </VirtualHost> Regards, Bruce On Dec 27, 2005, at 1:41 PM, Bischof Markus wrote: Hello, |
_______________________________________________ Trac mailing list [email protected] http://lists.edgewall.com/mailman/listinfo/trac
