Apache DAV-SVN (Ubuntu 18.04): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
{{note|Noch in Bearbeitung}}
== Installation ==
== Installation ==


Zeile 13: Zeile 10:


== Konfiguration ==
== Konfiguration ==
Zertifikat siehe [[SSL_Zertifikat]]
=== Passwort-Datenbank anlegen ===
Falls die Datenbank noch nicht existiert, ist der Parameter ''-c'' erforderlich.
<pre>
sudo htpasswd /etc/apache2/dav_svn.passwd <user name>
</pre>


=== DavLockDB ===
=== DavLockDB ===

Aktuelle Version vom 21. August 2020, 00:59 Uhr

Installation

sudo apt-get install libapache2-mod-svn

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

Konfiguration

Zertifikat siehe SSL_Zertifikat

Passwort-Datenbank anlegen

Falls die Datenbank noch nicht existiert, ist der Parameter -c erforderlich.

sudo htpasswd /etc/apache2/dav_svn.passwd <user name>

DavLockDB

Verzeichnis für DavLockDB anlegen:

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

Links

https://httpd.apache.org/docs/2.4/mod/mod_dav_fs.html

svn.conf

sudo vi /etc/apache2/sites-available/svn.conf 
<VirtualHost *:80>
        ServerName svn.kirner.or.at
        ServerAlias svn.kirner.or.at
        Redirect / https://svn.kirner.or.at
</VirtualHost>

svn-ssl.conf

sudo vi /etc/apache2/sites-available/svn-ssl.conf 
<virtualhost *:443>
    ServerName svn.kirner.or.at

    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>

aktivieren

cd /etc/apache2/sites-available/
sudo a2ensite svn.conf 
sudo a2ensite svn-ssl.conf 
sudo systemctl reload apache2.service 


Zurück zu Apache DAV-SVN