Difference between revisions of "Svn"

From A-Eskwiki
Jump to: navigation, search
Line 1: Line 1:
 
[[category:sysop]]
 
[[category:sysop]]
 
[[category:software]]
 
[[category:software]]
 +
 +
Op de vm-gitsvn staan alle svn-repos zoals bijv de Sysop-svn.
 +
 +
=== Nieuwe repo toevoegen ===
 +
Om een repo toe te voegen voeg je aan het bestand /etc/httpd/conf.d/subversion.conf het volgende toe:
 +
<pre>
 +
<Location /repos>
 +
        DAV svn
 +
        SVNPath /var/www/svn/*repodir*
 +
        AuthType Basic
 +
        AuthName "Subversion repos"
 +
        AuthUserFile /etc/svn-auth-conf
 +
        Require valid-user
 +
</Location>
 +
</pre>

Revision as of 20:38, 9 April 2013


Op de vm-gitsvn staan alle svn-repos zoals bijv de Sysop-svn.

Nieuwe repo toevoegen

Om een repo toe te voegen voeg je aan het bestand /etc/httpd/conf.d/subversion.conf het volgende toe:

<Location /repos>
        DAV svn
        SVNPath /var/www/svn/*repodir*
        AuthType Basic
        AuthName "Subversion repos"
        AuthUserFile /etc/svn-auth-conf
        Require valid-user
</Location>