| Tatome 2005-07-30, 9:01 am |
| Hi,
I was recently forced to upgrade to Apache2 and install the subversion
module. As the latter is completely new to me I'm not exactly sure, what
it's features are let alone how to configure them.
Anyway - I got apache to serve my repositories via ssl just fine only I
can't see any way how to change the code in them ie. I don't have write
access to the files in the repository using the web interface. Is there
any way to do this or can you only browse your repositories online and
need an extra client to commit your code changes?
The section in my apache2.conf dealing with the repository currently
reads like this:
NameVirtualHost [MyIP]:443
<VirtualHost [MyIP]:443>
LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so
SSLEngine On
SSLCertificateFile /var/subversion/cert/svn.crt
SSLCertificateKeyFile /var/subversion/cert/svn.pem
<Location /svn>
DAV svn
SVNPath /var/subversion/CluSim
AuthType Basic
AuthName "CluSim Repository - Web Access"
AuthUserFile /var/subversion/.dav_svn.passwd
Require valid-user
</Location>
</VirtualHost>
Thanks
|