Edgewall Software

Changes between Version 65 and Version 66 of TracOnDebian


Ignore:
Timestamp:
Aug 19, 2005, 11:43:29 AM (19 years ago)
Author:
leiss
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnDebian

    v65 v66  
    105105  SVNParentPath /var/svn
    106106  SVNAutoversioning on
     107  AuthType Basic
     108  AuthName "SVN - Your Project"
     109  AuthUserFile /ect/apache2/svn.passwd
     110  Require valid-user
    107111</Location>
    108112}}}
    109    Then I fixed permissions and restarted apache2:
     113   Then I fixed permissions, added User and restarted apache2:
    110114{{{
    111115chown www-data /var/svn/project
    112116chown -R www-data /var/svn/project/*
     117cd /etc/apache2
     118htpasswd2 -c svn.passwd user1 (you'll be prompted for the password)
     119htpasswd2 svn.passwd user2 (you'll be prompted for the password)
    113120apache2 -k restart
    114121}}}