Changes between Version 4 and Version 5 of faq/setup-trac
- Timestamp:
- May 8, 2009, 6:27:15 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
faq/setup-trac
v4 v5 6 6 7 7 * Configure your site to use [wiki:suexec suExec] 8 8 9 * Setup Trac (you can do this step while waiting for the suExec step to be completed). Be sure to execute this step as the same user that you used to setup suExec. 9 10 * Choose a directory to install your trac files (your domain.org/include/ directory is a good option). Replace words in capitals with values that make sense for your site: … … 16 17 trac-admin /home/members/GROUPNAME/sites/DOMAIN/include/trac/PROJECTNAME initenv 17 18 }}} 19 20 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. 21 22 == Debian Lenny == 23 24 * Create a trac directory in your cgi-bin directory: 25 {{{ 26 mkdir /home/members/GROUPNAME/sites/DOMAIN/cgi-bin/trac 27 }}} 28 * Create the trac cgi scripts using the trac deploy 29 {{{ 30 trac-admin /home/members/GROUPNAME/sites/DOMAIN/include/trac/PROJECTNAME deploy home/members/GROUPNAME/sites/DOMAIN/cgi-bin/trac/ 31 }}} 32 * Optionally, add an alias to your apache configuration: 33 {{{ 34 ScriptAlias /trac /home/members/GROUPNAME/sites/DOMAIN/cgi-bin/trac/trac.cgi 35 }}} 36 37 == Debian Etch == 38 18 39 * Create a wrapper script to execute trac. Place a file in your cgi-bin directory trac.cgi with the contents: 19 40 {{{