Changes between Version 2 and Version 3 of TracCgi


Ignore:
Timestamp:
Oct 19, 2010, 6:58:29 AM (14 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracCgi

    v2 v3  
    6868Add the following snippet to Apache configuration '''before''' the `ScriptAlias` for the CGI script, changing paths to match your deployment:
    6969{{{
    70 Alias /trac/chrome/common /path/to/trac/htdocs
     70Alias /trac/chrome/common /path/to/trac/htdocs/common
     71Alias /trac/chrome/site /path/to/trac/htdocs/site
    7172<Directory "/path/to/www/trac/htdocs">
    7273  Order allow,deny
    7374  Allow from all
    7475</Directory>
     76}}}
     77
     78If 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>
    7583}}}
    7684