Apache DAV-SVN (Ubuntu 18.04)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Noch in Bearbeitung


Installation

sudo apt-get install libapache2-mod-svn

sudo a2enmod dav
sudo a2enmod dav_fs
sudo systemctl restart apache2.service

Konfiguration

Verzeichnis für DavLockDB anlegen:

sudo mkdir /mnt/synology/web1/www/svn
sudo chown www-data:www-data /mnt/synology/web1/www/svn

Port 80 auf 443 weiterleiten:

sudo vi /etc/apache2/sites-available/svn.conf 
<VirtualHost *:80>
        ServerName svn.<domain>
        ServerAlias svn.<domain>
        Redirect / https://svn.<domain>
</VirtualHost>
sudo vi /etc/apache2/sites-available/svn-ssl.conf 
<virtualhost *:443>
    ServerName svn.<domain>

    SSLEngine On
    SSLCertificateFile /etc/ssl/certs/svn.crt
    SSLCertificateKeyFile /etc/ssl/private/apache.key

    DavLockDB /mnt/synology/web1/www/svn/DavLock

    <Location />
        Dav svn
        SVNParentPath /mnt/synology/web1/home/svn/
        SVNListParentPath on
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile "/etc/apache2/dav_svn.passwd"
        Require valid-user
    </Location>

    ErrorLog ${APACHE_LOG_DIR}/svn.kirner.or.at-error.log
    CustomLog ${APACHE_LOG_DIR}/svn.kirner.or.at-access.log combined
</virtualhost>


Zurück zu Apache DAV-SVN