Edgewall Software

Changes between Version 7 and Version 8 of TracCgi


Ignore:
Timestamp:
Oct 31, 2005, 4:04:26 PM (19 years ago)
Author:
ErikRose
Comment:

Removed references to /chrome/common that were wrong, AFAICT. (TracMultipleProjects agrees.)

Legend:

Unmodified
Added
Removed
Modified
  • TracCgi

    v7 v8  
    3232Edit the Apache configuration file again and add the following snippet '''before''' the `ScriptAlias` for the CGI script , file names and locations changed to match your installation:
    3333{{{
    34 Alias /trac/chrome/common /usr/share/trac/htdocs
     34Alias /trac /usr/share/trac/htdocs
    3535<Directory "/usr/share/trac/htdocs">
    3636  Order allow,deny
     
    3838</Directory>
    3939}}}
    40 
    41 Note that whatever URL path you mapped the `trac.cgi` script to, the path `/chrome/common` is the path you have to append to that location to intercept requests to the static resources.
    42 
    43 For example, if Trac is mapped to `/cgi-bin/trac.cgi` on your server, the URL of the Alias should be `/cgi-bin/trac.cgi/chrome/common`.
    4440
    4541== Adding Authentication ==