Edgewall Software

Changes between Version 448 and Version 449 of TracInstall


Ignore:
Timestamp:
Nov 9, 2021, 5:55:03 AM (2 years ago)
Author:
Ryan J Ollos
Comment:

Make paths consistent in the example.

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v448 v449  
    288288Assuming the deployment has been done this way:
    289289{{{#!sh
    290 $ trac-admin /var/trac/<project> deploy /var/www
     290$ trac-admin /var/trac/<project> deploy /var/www/trac
    291291}}}
    292292
    293293Add the following snippet to Apache configuration, changing paths to match your deployment. The snippet must be placed ''before'' the `ScriptAlias` or `WSGIScriptAlias` directive, because those directives map all requests to the Trac application:
    294294{{{#!apache
    295 Alias /trac/chrome /path/to/trac/htdocs
    296 
    297 <Directory "/path/to/www/trac/htdocs">
     295Alias /trac/chrome /var/www/trac/htdocs
     296
     297<Directory "/var/www/trac/htdocs">
    298298  # For Apache 2.2
    299299  <IfModule !mod_authz_core.c>