Changes between Version 10 and Version 11 of faq/setup-trac


Ignore:
Timestamp:
Dec 18, 2010, 12:35:29 AM (13 years ago)
Author:
alfredo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/setup-trac

    v10 v11  
    2121}}}
    2222
    23 Depending on the version of Debian you are using, the remaining steps are different. If you are not sure whether your primary host is running Debian Etch or Debian Lenny, please [/newticket post a ticket] and we'll help you sort it out.
    24 
    25 == Debian Lenny ==
    2623
    2724 * Create the trac cgi scripts using the trac deploy
     
    3835}}}
    3936
    40 == Debian Etch ==
    41 
    42  * Create a wrapper script to execute trac. Place a file in your cgi-bin directory trac.cgi with the contents:
    43 {{{
    44 #!/bin/bash
    45 
    46 export TRAC_ENV='/home/members/GROUPNAME/sites/DOMAIN/include/trac/PROJECTNAME'
    47 exec /usr/share/trac/cgi-bin/trac.cgi
    48 }}}
    49  * Make it executable:
    50 {{{
    51 chmod 755 trac.cgi
    52 }}}
    53  * Optionally, add an alias to your apache configuration:
    54 {{{
    55 ScriptAlias /trac /home/members/GROUPNAME/sites/DOMAIN/cgi-bin/trac.cgi
    56 }}}
    5737
    5838
    5939
    60