Changes between Version 3 and Version 4 of TracCgi
- Timestamp:
- 12/09/11 17:51:19 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracCgi
v3 v4 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 70 Alias /trac/chrome/common /path/to/trac/htdocs/common 71 Alias /trac/chrome/site /path/to/trac/htdocs/site 71 72 <Directory "/path/to/www/trac/htdocs"> 72 73 Order allow,deny 73 74 Allow from all 74 75 </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 None 82 </Location> 75 83 }}} 76 84