Changes between Version 2 and Version 3 of TracCgi


Ignore:
Timestamp:
07/06/12 15:43:08 (12 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/common 
    71 Alias /trac/chrome/site /path/to/trac/htdocs/site 
     70Alias /trac/chrome/common /path/to/trac/htdocs 
    7271<Directory "/path/to/www/trac/htdocs"> 
    7372  Order allow,deny 
    7473  Allow from all 
    7574</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> 
    8375}}} 
    8476