Edgewall Software

Changes between Version 21 and Version 22 of TracMultipleProjects


Ignore:
Timestamp:
Dec 15, 2004, 6:11:15 PM (19 years ago)
Author:
anonymous
Comment:

The Alias statement was missing. The output was unformatted.

Legend:

Unmodified
Added
Removed
Modified
  • TracMultipleProjects

    v21 v22  
    1313RewriteRule ^/projects/([[:alnum:]]+)(/?.*)     /projects/trac.cgi$2 [S=1,E=TRAC_ENV:/var/lib/trac/$1]
    1414RewriteRule ^/projects/(.*)                     /projects/index.html
     15
     16Alias /trac/ /usr/share/trac/htdocs/
     17#or where you installed the trac htdocs
     18
     19#You have to allow people to read the files in htdocs
     20<Directory "/usr/share/trac/htdocs">
     21        Options Indexes MultiViews
     22        AllowOverride None
     23        Order allow,deny
     24        Allow from all
     25</Directory>
    1526
    1627<Directory "/var/www/projects">