Changes between Version 2 and Version 3 of TracCgi
- Timestamp:
- 07/06/12 15:43:08 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracCgi
v2 v3 68 68 Add the following snippet to Apache configuration '''before''' the `ScriptAlias` for the CGI script, changing paths to match your deployment: 69 69 {{{ 70 Alias /trac/chrome/common /path/to/trac/htdocs/common 71 Alias /trac/chrome/site /path/to/trac/htdocs/site 70 Alias /trac/chrome/common /path/to/trac/htdocs 72 71 <Directory "/path/to/www/trac/htdocs"> 73 72 Order allow,deny 74 73 Allow from all 75 74 </Directory> 76 }}}77 78 If using mod_python, you might want to add this too (otherwise, the alias will be ignored):79 {{{80 <Location "/trac/chrome/common/">81 SetHandler None82 </Location>83 75 }}} 84 76