Edgewall Software

Changes between Version 65 and Version 66 of TracModPython


Ignore:
Timestamp:
Apr 14, 2006, 7:40:13 PM (18 years ago)
Author:
dom@…
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v65 v66  
    2626</Location>
    2727}}}
     28
    2829
    2930Note that the option `TracUriRoot` may or may not be necessary in your setup. Try without first, and if the URLs produced by Trac look wrong or if Trac does not seem to recognize the URLs correctly, add the `TracUriRoot` option.
     
    7980</LocationMatch>
    8081}}}
    81 
    82 
    8382
    8483== Virtual Host Configuration ==
     
    149148See also [[http://subversion.tigris.org/faq.html#reposperms]]
    150149
     150=== Using {{{/trac}}} root URL ===
     151
     152If you wish your trac to be at http://example.com/trac, the default config will not display images or CSS correctly, and the config must be changed.
     153
     154{{{/chrome}}} is configurable (and infact needs to be changed) in {{{/var/trac/myproject/conf/trac.ini}}}
     155
     156{{{
     157[trac]
     158...
     159htdocs_location = /trac/chrome/
     160}}}
     161
     162
     163Then in the !VirtualHost directives
     164{{{
     165    Alias /trac/chrome /usr/share/trac/htdocs
     166    <LocationMatch /trac/chrome/>
     167        SetHandler None
     168    </LocationMatch>
     169}}}
     170
     171
     172
     173
    151174----
    152175See also TracGuide, TracInstall, TracCgi, TracFastCgi, [wiki:TracMultipleProjectsSVNAccess]