LINUX How to Install and Configure Subversion with Apache

Install and Configure Subversion. 
[root@www ~]#yum -y install subversion mod_dav_svn
[root@www ~]#vi /etc/httpd/conf.d/subversion.conf

# line 26-40: uncomment and change like follows
<Location /repos>
   DAV svn
   SVNParentPath /var/www/svn
# # Limit write permission to list of valid users.
   <LimitExcept GET PROPFIND OPTIONS REPORT>
      # Require SSL connection for password protection.
      SSLRequireSSL
      AuthType Basic
      AuthName "Authorization Realm"
      AuthUserFile /etc/httpd/conf/.htpasswd     
     # specify access control file
     AuthzSVNAccessFile /etc/svnusers
      Require valid-user
   </LimitExcept>
</Location>
[root@www ~]# vi /etc/svnusers
# set access right like an example below
[site:/]
# all users are writable
* = rw
# cent is writable
[site:/directory]
cent = rw
# userB is readable
userB = r
# userC is not permitted
userC =

[root@www ~]# mkdir -p /var/www/svn/site
[root@www ~]#svnadmin create /var/www/svn/site # create a repository
[root@www ~]#chown -R apache. /var/www/svn
[root@www ~]#htpasswd -c /etc/httpd/conf/.htpasswd cent # add a user

New password:         # set password
Re-type new password:
Adding password for user cent
[root@www ~]#/etc/rc.d/init.d/httpd restart
Stopping httpd:[ OK ]
Starting httpd:[ OK ]

Comments

Popular posts from this blog

LINUX Move and copy files using SSH

PHP Predefined Variables

Java : Variables Declaring