Edgewall Software

Changes between Version 69 and Version 70 of TracOnDebian


Ignore:
Timestamp:
Aug 31, 2005, 4:57:18 PM (19 years ago)
Author:
jim@…
Comment:

Cleaned up some steps, permission changing didn't work for me.

Legend:

Unmodified
Added
Removed
Modified
  • TracOnDebian

    v69 v70  
    8383
    8484== Debian Sarge 3.1 (stable) ==
    85 If you have Debian Sarge 3.1 you can directly start from this Line, after you've installed Apache2.
     85If you have Debian Sarge 3.1 you can directly start from this Line, after you've installed Apache2.  From a basic installation of the final 3.1 stable, you'll need to install apache2, subversion, trac, and libapache2-svn.
    8686
    8787   ...
     
    118118   Then I fixed permissions, added User and restarted apache2:
    119119{{{
    120 chown www-data /var/svn/project
    121 chown -R www-data /var/svn/project/*
     120find /var/svn/project -type f -exec chmod 660 {} \;
     121find /var/svn/project -type d -exec chmod 2770 {} \;
     122chown -R root.www-data /var/lib/svn/repository
    122123cd /etc/apache2
    123124htpasswd2 -c svn.passwd user1 (you'll be prompted for the password)
     
    128129
    129130UPDATE: I had some problems with the WebDAV module not loading. To enable this, you need to create some sym links inside /etc/apache2/mods-enabled. I typed this to get it to work:
    130 {{{
    131 ln -s /etc/apache2/mods-available/dav.load /etc/apache2/mods-enabled/dav.load
    132 ln -s /etc/apache2/mods-available/dav_fs.load /etc/apache2/mods-enabled/dav_fs.load
    133 apache2 -k restart
    134 }}}
    135 Debian even comes with tools to manage these symlinks. Instead of the above you can also type this, which will have the same effect:
    136131{{{
    137132a2enmod dav