Edgewall Software

Changes between Version 28 and Version 29 of TracOnUbuntu


Ignore:
Timestamp:
Dec 30, 2005, 9:44:38 AM (18 years ago)
Author:
anonymous
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnUbuntu

    v28 v29  
    161161        </Location>
    162162}}}
     163
     164=== Breezy ===
     165If you are going to want to login, you're going to need authentication. I added the following to my virtual host file to get this to work:
     166
     167{{{
     168        <Location "/trac.cgi/login">
     169            AuthType Basic
     170            AuthName "Trac"
     171            AuthUserFile /etc/apache2/dav_svn.passwd
     172            Require valid-user
     173        </Location>
     174}}}
     175
     176This will share the password with your subversion install. You'll also need to grant each user rights using trac-admin. Finally don't forget to restart Apache after you make changes to the virtual host file.