-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubversion
More file actions
36 lines (23 loc) · 894 Bytes
/
subversion
File metadata and controls
36 lines (23 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#rpms already done :) rhel 3 & 4
http://the.earth.li/pub/subversion/summersoft.fay.ar.us/pub/subversion/latest/
#setting up with webdav
1. You need to create the respository and it need to be owned by apache
e.g
# To create a new repository "http://localhost/repos/stuff" using
# this configuration, run as root:
#
cd /var/www/svn
svnadmin create project
chown -R apache.apache project
2. Enable the following with your virtual host
<Location /repos>
DAV svn
SVNParentPath /var/www/svn
###Enable the following for password protection to your webdav
AuthType Basic
AuthName "Authorization Realm"
AuthUserFile /path/to/passwdfile
Require valid-user
</Location>
After that, you can then use the following URL to connect to your repository project.
svn checkout http://mydomain.com/repos/stuff