Changes between Version 4 and Version 5 of TracCgi
- Время:
- 10 апр. 2011 г., 17:54:27 (15 лет назад)
Обозначения:
- Без изменений
- Добавлено
- Удалено
- Изменено
-
TracCgi
v4 v5 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