summaryrefslogtreecommitdiff
path: root/www/ap2-subversion/MESSAGE
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2003-02-03 20:24:13 +0000
committerdrochner <drochner@pkgsrc.org>2003-02-03 20:24:13 +0000
commitdd254da1045e7dca1097f096b6077aeae800dba7 (patch)
tree2f564f29d75c49374e350614d7948df25f8818a6 /www/ap2-subversion/MESSAGE
parent61280d9e9b82aafedd1b6cb2bc353d259ddfef0b (diff)
downloadpkgsrc-dd254da1045e7dca1097f096b6077aeae800dba7.tar.gz
add the missing link between subversion and apache2,
mostly from Eric Gillespie <epg@pretzelnet.org>
Diffstat (limited to 'www/ap2-subversion/MESSAGE')
-rw-r--r--www/ap2-subversion/MESSAGE22
1 files changed, 22 insertions, 0 deletions
diff --git a/www/ap2-subversion/MESSAGE b/www/ap2-subversion/MESSAGE
new file mode 100644
index 00000000000..2667e754faf
--- /dev/null
+++ b/www/ap2-subversion/MESSAGE
@@ -0,0 +1,22 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2003/02/03 20:24:13 drochner Exp $
+
+See ${PREFIX}/share/doc/subversion/INSTALL for details on making
+a repository accessible via mod_dav_svn. Basically, you need
+something like this in httpd.conf:
+
+ LoadModule dav_svn_module "lib/httpd/mod_dav_svn.so"
+ <Location /svn>
+ DAV svn
+ SVNPath "/path/to/repository"
+ <LimitExcept GET HEAD OPTIONS POST PROPFIND REPORT TRACE>
+ AuthType Basic
+ AuthName "Subversion repository"
+ AuthUserFile "/path/to/passwd-file"
+ Require valid-user
+ Order deny,allow
+ Deny from all
+ </LimitExcept>
+ </Location>
+
+===========================================================================