Edgewall Software

Changes between Version 2 and Version 3 of 0.11/TracOnUbuntu


Ignore:
Timestamp:
May 31, 2008, 7:03:54 PM (16 years ago)
Author:
ThurnerRupert
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • 0.11/TracOnUbuntu

    v2 v3  
    3838        DocumentRoot /var/www
    3939
    40         SetHandler mod_python
    41         PythonInterpreter main_interpreter
    42         PythonHandler trac.web.modpython_frontend
    43         PythonOption TracEnvParentDir /var/lib/trac
    44         PythonOption TracUriRoot /
     40        <location /projects>
     41                SetHandler mod_python
     42                PythonInterpreter main_interpreter
     43                PythonHandler trac.web.modpython_frontend
     44                PythonOption TracEnvParentDir /var/lib/trac
     45                PythonOption TracUriRoot /
    4546
    46         ErrorLog /var/log/apache2/error.trac.log
    47         CustomLog /var/log/apache2/access.trac.log combined
     47                ErrorLog /var/log/apache2/error.trac.log
     48                CustomLog /var/log/apache2/access.trac.log combined
     49        </location>
     50
     51        # use the following for one authorization for all projects                     
     52        <LocationMatch "/projects/[[:alnum:]]+/login">             
     53            AuthType Basic                                                             
     54            AuthName "trac"                                                             
     55            AuthUserFile /etc/apache2/dav_svn.passwd
     56            Require valid-user                                                         
     57        </LocationMatch>         
     58
    4859</VirtualHost>
    4960}}}