diff options
author | drochner <drochner> | 2003-02-03 20:24:13 +0000 |
---|---|---|
committer | drochner <drochner> | 2003-02-03 20:24:13 +0000 |
commit | cc4bff3ec0d944f15f1c7f873b6f6cedc9350f20 (patch) | |
tree | 2f564f29d75c49374e350614d7948df25f8818a6 /www/ap2-subversion/MESSAGE | |
parent | c867ae8b0cbe97bfc8d496a0a3bd9fd9b3e3978a (diff) | |
download | pkgsrc-cc4bff3ec0d944f15f1c7f873b6f6cedc9350f20.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/MESSAGE | 22 |
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> + +=========================================================================== |