Currently I have a working ISPConfig server setup. I was reading your post about SVN. I use my ISPConfig primarily for testing webapps, etc... it's not really a production system. I would like to implement SVN, as I am no longer able to SFTP into my box from work. I have diffrent subdomains for every project that I do. I would like each to have a repos. Not automagically, I am willing to create the repos as needed (some will not need it). I was looking at
Code:
2. repos at / , multi repos
$ svnadmin create /home/www/web1/web/project1
$ svnadmin create /home/www/web1/web/project2
------------------------------------------------------------
LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location />
DAV svn
SVNParentPath /home/www/web1/web
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /home/www/web1/.htpasswd
<LimitExcept GET PROPFIND OPTIONS REPORT>
SSLRequireSSL
Require valid-user
</LimitExcept>
</Location>
I believe this is what I want, but I need to know, did you get this implementation working, or do you see any reason why it shouldn't. Can you also tell me where exactly I need to put the conf info
Code:
LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
<Location />
DAV svn
SVNParentPath /home/www/web1/web
AuthType Basic
AuthName "Subversion repository"
AuthUserFile /home/www/web1/.htpasswd
<LimitExcept GET PROPFIND OPTIONS REPORT>
SSLRequireSSL
Require valid-user
</LimitExcept>
</Location>
Does it go in the apache directives?