summaryrefslogtreecommitdiff
path: root/subversion/README
diff options
context:
space:
mode:
authorJohannes Winkelmann <jw@smts.ch>2006-02-23 15:26:10 +0000
committerJohannes Winkelmann <jw@smts.ch>2006-02-23 15:26:10 +0000
commitbdea7e6c6a535e57a07d376a3139d0788efaaa41 (patch)
tree1a7334c99fa39b1ad1a7a35c113b18cb0d92413c /subversion/README
downloadopt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.gz
opt-bdea7e6c6a535e57a07d376a3139d0788efaaa41.tar.xz
create branch for 2.2
Diffstat (limited to 'subversion/README')
-rw-r--r--subversion/README41
1 files changed, 41 insertions, 0 deletions
diff --git a/subversion/README b/subversion/README
new file mode 100644
index 000000000..b74b469c6
--- /dev/null
+++ b/subversion/README
@@ -0,0 +1,41 @@
+NOTES
+
+This is a port for the subversion revision control; if you have apache
+(version 2.0+) installed, you'll also get the apache modules to run a
+subversion server via apache/WebDAV.
+Else you'll still be able to create a server with the svnserve
+application. If you want absolutely no server parts, add
+"--without-berkeley-db" to the configure line
+
+If you're going to install apache later on, you'll need to recompile
+this package (solutions to this are already planned).
+
+If you want Python Bindings, install SWIG and comment out the few lines
+in the build() function
+
+PRE-INSTALL (SERVER)
+Make sure you install expat before you install apache; also, note that you'll
+get a footprint missmatch
+
+
+POST-INSTALL (SERVER)
+
+add something like this to your apache configuration:
+
+#LoadModule dav_module lib/apache/mod_dav.so
+#LoadModule dav_svn_module lib/apache/mod_dav_svn.so
+#<Location /svn/repos>
+# DAV svn
+# SVNPath /home/svnroot
+#
+# # 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 /absolute/path/to/passwdfile
+# Require valid-user
+# </LimitExcept>
+#</Location>

Generated by cgit