Edgewall Software

Changes between Version 29 and Version 30 of TracOnFedoraCore


Ignore:
Timestamp:
Jan 14, 2006, 1:19:19 PM (18 years ago)
Author:
fedora@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnFedoraCore

    v29 v30  
    11= Trac on Fedora Core 4 (and higher) =
    22
    3 Verify you have configured Yum to use Extras repo (which is enabled by default)
    4 and run:
     3Installing Trac On Fedora Core 4 is easy with Yum and involves only 2 steps:
    54
     51) Verify you have configured Yum to use the Extras repository (which is enabled by default)
     6and run the following command in a terminal window:
     7
     8{{{
    69  $ sudo yum install trac
     10}}}
    711
    8 Yum will take care of all dependencies (clearsilver) and will fetch and
     12
     13Yum will take care of all dependencies on which the Trac package depends (including python-clearsilver package) and will fetch and
    914install them for you automatically.
    1015
    11 Next, you need to edit /etc/httpd/conf.d/trac.conf to point to your trac
    12 environment and restart apache.
     162) Next, you need to edit /etc/httpd/conf.d/trac.conf to point to your trac
     17environment and restart apache:
     18
     19
     20{{{
     21 <Location /foobar>
     22   SetHandler mod_python
     23   PythonHandler trac.web.modpython_frontend
     24   PythonOption TracEnv /var/trac/foobar
     25   PythonOption TracUriRoot /foobar
     26 </Location>
     27
     28}}}
     29
     30Notes on the Fedora Extras Trac package:
     31
     32 * tracd is disabled and not packaged
     33 * trac.cgi is installed in /var/www/cgi-bin/trac.cgi
     34 * apache webserver config file is installed in /etc/httpd/conf.d/trac.conf
     35 * trac.fcgi is disabled and not packaged
     36
     37If you happen to come accross any packaging issues, feature requests or problems on Fedora, you can submit a bugzilla bug for Trac at [https://bugzilla.redhat.com/bugzilla/easy_enter_bug.cgi].
     38