Edgewall Software

Changes between Version 346 and Version 347 of TracInstall


Ignore:
Timestamp:
Jul 27, 2011, 2:39:58 PM (13 years ago)
Author:
Remy Blank
Comment:

Reverted to version 345. The examples are meant as illustrations, not to be copy/pasted.

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v346 v347  
    317317Assuming the deployment has been done this way:
    318318{{{
    319 $ trac-admin /usr/share/trac/projects/my-project deploy /tmp/deploy
    320 $ mv /tmp/deploy/* /usr/share/trac
     319$ trac-admin /var/trac/env deploy /path/to/trac/htdocs/common
    321320}}}
    322321
    323322Add the following snippet to Apache configuration ''before'' the `ScriptAlias` or `WSGIScriptAlias` (which map all the other requests to the Trac application), changing paths to match your deployment:
    324323{{{
    325 Alias /trac/chrome/common /usr/share/trac/htdocs/common
    326 Alias /trac/chrome/site /usr/share/trac/htdocs/site
    327 
    328 <Directory "/usr/share/trac/htdocs">
     324Alias /trac/chrome/common /path/to/trac/htdocs/common
     325Alias /trac/chrome/site /path/to/trac/htdocs/site
     326
     327<Directory "/path/to/www/trac/htdocs">
    329328  Order allow,deny
    330329  Allow from all