Edgewall Software

Changes between Version 9 and Version 10 of TracCgi


Ignore:
Timestamp:
Oct 31, 2005, 4:16:51 PM (19 years ago)
Author:
Christopher Lenz
Comment:

Erik, this doc applies to 0.9

Legend:

Unmodified
Added
Removed
Modified
  • TracCgi

    v9 v10  
    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 /usr/share/trac/htdocs
     34Alias /trac/chrome/common /usr/share/trac/htdocs
    3535<Directory "/usr/share/trac/htdocs">
    3636  Order allow,deny
     
    3838</Directory>
    3939}}}
     40
     41Note 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
     43For 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`.
    4044
    4145Alternatively, you can set the `htdocs_location` configuration option in [wiki:TracIni trac.ini]: