tracのインストール手順

自分用メモ。
Fedora 10のお話。
まず必要なモジュールのインストール。


yum -y install mod_ssl mod_python subversion trac


次にsvnadminでリポジトリを作っておく。
svnadmin create /var/svn/repos/test
chown -R apache:apache /var/svn/repos/test


[root@fedora10 test]# vim /etc/httpd/conf.d/trac.conf

SetHandler mod_python
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /var/www/html/trac/test
PythonOption TracUriRoot /trac/test



SSLRequireSSL
AuthType Basic
AuthName "Authentication Directory"
AuthUserFile /etc/httpd/conf/.trachtpasswd
AuthGroupFile /dev/null
Require valid-user


以上。
日本語化は適当に。

参考URL

Trac をインストールしてみたよ
http://espion.just-size.jp/archives/05/297225719.html