Edgewall Software

Changes between Version 67 and Version 68 of TracMultipleProjects


Ignore:
Timestamp:
Nov 8, 2005, 3:42:39 PM (18 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracMultipleProjects

    v67 v68  
    292292 * Add the <Location "/projects/projectname/login"> directive as mentioned above for each project (I have two Location directives for each project, one for /projects/projectname/login and one for /cgi-bin/trac.fcgi/projectname/login)
    293293
     294---
     295'''User Contribution (using cgi on apache-ssl and 0.9)''' :[[BR]]
     296{{{
     297# Common files, gif, css, js
     298Alias /project/chrome/common /usr/share/trac/htdocs
     299<Directory "/usr/share/trac/htdocs">
     300  Order allow,deny
     301  Allow from all
     302</Directory>
     303
     304# Multi project Home (0.9 only)
     305ScriptAlias /project /usr/share/trac/cgi-bin/trac.cgi
     306<Location "/project">
     307  SetEnv TRAC_ENV_PARENT_DIR "/server/trac/"
     308</Location>
     309
     310# For the authentification
     311<LocationMatch "/project/(.*)/login">
     312  AuthType Digest
     313  AuthName "trac"
     314  AuthDigestFile /server/trac/users.htdigest
     315  Require valid-user
     316</LocationMatch>
     317}}}
    294318-------
    295319See also: TracGuide, TracInstall, TracMultipleProjectsWindows