Skip to content

Instantly share code, notes, and snippets.

@niraj-shah
Last active May 10, 2018 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niraj-shah/e1d7ce770830cf8fb321555ee9ccd3e0 to your computer and use it in GitHub Desktop.
Save niraj-shah/e1d7ce770830cf8fb321555ee9ccd3e0 to your computer and use it in GitHub Desktop.
SVN Setup on EasyApache4
# move to home directory
cd ~/
# download svn source
wget https://archive.apache.org/dist/subversion/subversion-1.7.14.tar.bz2
# extract source
tar -xzvf subversion-1.7.14.tar.bz2
# enter extracted directory
cd subversion-1.7.14
# configure svn
./configure --with-apr=/opt/cpanel/ea-apr16/bin/apr-1-config --with-apr-util=/opt/cpanel/ea-apr16/bin/apu-1-config --with-apxs=/usr/bin/apxs --with-neon=/usr/local
# make and install
make && make install
# enable the svn apache modules
LoadModule dav_svn_module /usr/lib64/apache2/modules/mod_dav_svn.so
LoadModule authz_svn_module /usr/lib64/apache2/modules/mod_authz_svn.so
# run as root
yum install ea-apache24-devel subversion
# find installed svn apache modules
httpd -M | grep svn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment