chiark / gitweb /
debian/: Working on new packaging arrangements
[userv-utils.git] / git-daemon / README
index 116a6b35cec0d090efd1ae4dd2e4a765db6443a3..97edd702ca263f51690a3c635ea09f9e73ef6ac4 100644 (file)
@@ -15,7 +15,7 @@ userv-git-daemon uses $(libuserv), $(etcuserv), and $(services).
 
 Type make install.
 
-Create a "git" user that will run the outer part of the git-daemon.
+Create a "userv-git" user that will run the outer part of the git-daemon.
 Ensure your /etc/services contains a line like "git 9418/tcp".
 
 Insert the inetd.conf fragment into your /etc/inetd.conf
@@ -59,35 +59,7 @@ service, which is simply the git program with the same name.
 Configuration:
 --------------
 
-See "chiark-urlmap" for an example.
-
-Each line is one of:
-
-    single-user <vhost>[/<subpath>] <user> [<directory>]
-          matching requests will be handled by <user>
-          and unless overridden by <user> handled by
-          serving subdirectories of <directory>
-
-    multi-user <vhost>[/<subpath>] <directory>
-          matching requests are only those those next
-          path element starts with ~<user>.  The
-          request will be handled by <user> and unless
-          overridden by <user> will be handled by
-          serving subdirectories of <directory>
-          (<directory> must be a relative path)
-
-    repo-regexp <regexp>
-          For per-user service.  Subrepos must match this
-          regexp, which must contain a single matching
-          group which is the filesystem pathname inside
-          the <directory>.  The default is (Tcl syntax):
-    repo-regexp {^(\w[-+._0-9A-Za-z]*)$}
-
-    [no-]require-git-daemon-export-ok
-          For per-user service.  Default is no-.
-
-Last match, or last setting, wins.
-<subpath>s may start with ~
+See "git-urlmap" for syntax description and an example.
 
 
 ----------------------------------------------