I had installed apache2 earlier using the zypper command and it was running ok. To install subversion, I ran:
# zypper install subversion-server
That install went smoothly. From my previous experience setting up apache2 for clustering tomcat, I knew that enabling and disabling modules was to be accomplished through the a2enmod and a2dismod commands respectively. This is an excellent alternative to hand editing the configuration files.
After some trial and error, the commands listed below are what was needed to get the modules setup correctly. The order of commands is important as the modules need to be loaded in the order of dependency.
# a2enmod dav
# a2enmod dav_svn
# a2enmod authz_svn
Additionally, the following links helped me complete the process of setting up the server:
Apache Howto SSL - opensuse.org
Setting up a Subversion server using Apache2 - opensuse.org
Configuring Apache for Subversion use- techrepublic.com
No comments:
Post a Comment