Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 1 | git-daemon(1) |
| 2 | ============= |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 6 | git-daemon - A really simple server for Git repositories |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Jonas Fonseca | 353ce81 | 2005-12-31 18:37:15 +0100 | [diff] [blame] | 10 | [verse] |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 11 | 'git daemon' [--verbose] [--syslog] [--export-all] |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 12 | [--timeout=<n>] [--init-timeout=<n>] [--max-connections=<n>] |
| 13 | [--strict-paths] [--base-path=<path>] [--base-path-relaxed] |
| 14 | [--user-path | --user-path=<path>] |
| 15 | [--interpolated-path=<pathtemplate>] |
| 16 | [--reuseaddr] [--detach] [--pid-file=<file>] |
| 17 | [--enable=<service>] [--disable=<service>] |
| 18 | [--allow-override=<service>] [--forbid-override=<service>] |
Felipe Contreras | 0460ed2 | 2013-05-08 20:16:55 -0500 | [diff] [blame] | 19 | [--access-hook=<path>] [--[no-]informative-errors] |
| 20 | [--inetd | |
| 21 | [--listen=<host_or_ipaddr>] [--port=<n>] |
| 22 | [--user=<user> [--group=<group>]]] |
Lucas Werkmeister | 0c591ca | 2018-02-04 19:30:37 +0100 | [diff] [blame] | 23 | [--log-destination=(stderr|syslog|none)] |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 24 | [<directory>...] |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 25 | |
| 26 | DESCRIPTION |
| 27 | ----------- |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 28 | A really simple TCP Git daemon that normally listens on port "DEFAULT_GIT_PORT" |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 29 | aka 9418. It waits for a connection asking for a service, and will serve |
| 30 | that service if it is enabled. |
A Large Angry SCM | 62cd033 | 2005-08-29 22:31:22 -0400 | [diff] [blame] | 31 | |
| 32 | It verifies that the directory has the magic file "git-daemon-export-ok", and |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 33 | it will refuse to export any Git directory that hasn't explicitly been marked |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 34 | for export this way (unless the `--export-all` parameter is specified). If you |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 35 | pass some directory paths as 'git daemon' arguments, you can further restrict |
Petr Baudis | 2707da9 | 2005-10-21 02:28:45 +0200 | [diff] [blame] | 36 | the offers to a whitelist comprising of those. |
A Large Angry SCM | 62cd033 | 2005-08-29 22:31:22 -0400 | [diff] [blame] | 37 | |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 38 | By default, only `upload-pack` service is enabled, which serves |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 39 | 'git fetch-pack' and 'git ls-remote' clients, which are invoked |
| 40 | from 'git fetch', 'git pull', and 'git clone'. |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 41 | |
| 42 | This is ideally suited for read-only updates, i.e., pulling from |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 43 | Git repositories. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 44 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 45 | An `upload-archive` also exists to serve 'git archive'. |
Christian Couder | e2b1d1c | 2006-10-27 06:59:18 +0200 | [diff] [blame] | 46 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 47 | OPTIONS |
| 48 | ------- |
Junio C Hamano | ce335fe | 2005-11-21 01:21:18 -0800 | [diff] [blame] | 49 | --strict-paths:: |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 50 | Match paths exactly (i.e. don't allow "/foo/repo" when the real path is |
| 51 | "/foo/repo.git" or "/foo/repo/.git") and don't do user-relative paths. |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 52 | 'git daemon' will refuse to start when this option is enabled and no |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 53 | whitelist is specified. |
| 54 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 55 | --base-path=<path>:: |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 56 | Remap all the path requests as relative to the given path. |
Thomas Ackermann | 48a8c26 | 2013-01-21 20:16:20 +0100 | [diff] [blame] | 57 | This is sort of "Git root" - if you run 'git daemon' with |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 58 | '--base-path=/srv/git' on example.com, then if you later try to pull |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 59 | 'git://example.com/hello.git', 'git daemon' will interpret the path |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 60 | as '/srv/git/hello.git'. |
Petr Baudis | b21c31c | 2005-12-23 02:27:40 +0100 | [diff] [blame] | 61 | |
Jens Axboe | 73a7a65 | 2007-07-27 14:00:29 -0700 | [diff] [blame] | 62 | --base-path-relaxed:: |
| 63 | If --base-path is enabled and repo lookup fails, with this option |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 64 | 'git daemon' will attempt to lookup without prefixing the base path. |
Jens Axboe | 73a7a65 | 2007-07-27 14:00:29 -0700 | [diff] [blame] | 65 | This is useful for switching to --base-path usage, while still |
| 66 | allowing the old paths. |
| 67 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 68 | --interpolated-path=<pathtemplate>:: |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 69 | To support virtual hosting, an interpolated path template can be |
| 70 | used to dynamically construct alternate paths. The template |
Jon Loeliger | dd46762 | 2006-09-26 09:47:43 -0500 | [diff] [blame] | 71 | supports %H for the target hostname as supplied by the client but |
| 72 | converted to all lowercase, %CH for the canonical hostname, |
| 73 | %IP for the server's IP address, %P for the port number, |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 74 | and %D for the absolute path of the named repository. |
Jon Loeliger | dd46762 | 2006-09-26 09:47:43 -0500 | [diff] [blame] | 75 | After interpolation, the path is validated against the directory |
| 76 | whitelist. |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 77 | |
Petr Baudis | 2707da9 | 2005-10-21 02:28:45 +0200 | [diff] [blame] | 78 | --export-all:: |
Thomas Ackermann | 48a8c26 | 2013-01-21 20:16:20 +0100 | [diff] [blame] | 79 | Allow pulling from all directories that look like Git repositories |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 80 | (have the 'objects' and 'refs' subdirectories), even if they |
Petr Baudis | 2707da9 | 2005-10-21 02:28:45 +0200 | [diff] [blame] | 81 | do not have the 'git-daemon-export-ok' file. |
| 82 | |
A Large Angry SCM | 62cd033 | 2005-08-29 22:31:22 -0400 | [diff] [blame] | 83 | --inetd:: |
Lucas Werkmeister | 0c591ca | 2018-02-04 19:30:37 +0100 | [diff] [blame] | 84 | Have the server run as an inetd service. Implies --syslog (may be |
| 85 | overridden with `--log-destination=`). |
Erik Faye-Lund | 9cddf56 | 2010-11-04 02:35:23 +0100 | [diff] [blame] | 86 | Incompatible with --detach, --port, --listen, --user and --group |
| 87 | options. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 88 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 89 | --listen=<host_or_ipaddr>:: |
Markus Heidelberg | 6285441 | 2009-04-18 11:46:06 +0200 | [diff] [blame] | 90 | Listen on a specific IP address or hostname. IP addresses can |
| 91 | be either an IPv4 address or an IPv6 address if supported. If IPv6 |
Jon Loeliger | dd46762 | 2006-09-26 09:47:43 -0500 | [diff] [blame] | 92 | is not supported, then --listen=hostname is also not supported and |
| 93 | --listen must be given an IPv4 address. |
Alexander Sulfrian | 3a3a29c | 2010-08-30 13:30:51 +0200 | [diff] [blame] | 94 | Can be given more than once. |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 95 | Incompatible with `--inetd` option. |
Jon Loeliger | dd46762 | 2006-09-26 09:47:43 -0500 | [diff] [blame] | 96 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 97 | --port=<n>:: |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 98 | Listen on an alternative port. Incompatible with `--inetd` option. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 99 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 100 | --init-timeout=<n>:: |
Michael Stapelberg | b8843ef | 2011-08-27 16:29:20 +0200 | [diff] [blame] | 101 | Timeout (in seconds) between the moment the connection is established |
| 102 | and the client request is received (typically a rather low value, since |
Petr Baudis | 2707da9 | 2005-10-21 02:28:45 +0200 | [diff] [blame] | 103 | that should be basically immediate). |
| 104 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 105 | --timeout=<n>:: |
Michael Stapelberg | b8843ef | 2011-08-27 16:29:20 +0200 | [diff] [blame] | 106 | Timeout (in seconds) for specific client sub-requests. This includes |
| 107 | the time it takes for the server to process the sub-request and the |
| 108 | time spent waiting for the next client's request. |
Petr Baudis | 2707da9 | 2005-10-21 02:28:45 +0200 | [diff] [blame] | 109 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 110 | --max-connections=<n>:: |
Stephen R. van den Berg | 3bd62c2 | 2008-08-14 20:02:20 +0200 | [diff] [blame] | 111 | Maximum number of concurrent clients, defaults to 32. Set it to |
| 112 | zero for no limit. |
| 113 | |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 114 | --syslog:: |
Lucas Werkmeister | 0c591ca | 2018-02-04 19:30:37 +0100 | [diff] [blame] | 115 | Short for `--log-destination=syslog`. |
| 116 | |
| 117 | --log-destination=<destination>:: |
| 118 | Send log messages to the specified destination. |
| 119 | Note that this option does not imply --verbose, |
| 120 | thus by default only error conditions will be logged. |
| 121 | The <destination> must be one of: |
| 122 | + |
| 123 | -- |
| 124 | stderr:: |
| 125 | Write to standard error. |
| 126 | Note that if `--detach` is specified, |
| 127 | the process disconnects from the real standard error, |
| 128 | making this destination effectively equivalent to `none`. |
| 129 | syslog:: |
| 130 | Write to syslog, using the `git-daemon` identifier. |
| 131 | none:: |
| 132 | Disable all logging. |
| 133 | -- |
| 134 | + |
| 135 | The default destination is `syslog` if `--inetd` or `--detach` is specified, |
| 136 | otherwise `stderr`. |
Petr Baudis | 9048fe1 | 2005-09-24 16:13:01 +0200 | [diff] [blame] | 137 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 138 | --user-path:: |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 139 | --user-path=<path>:: |
Miklos Vajna | 4fce51c | 2008-12-16 16:48:12 +0100 | [diff] [blame] | 140 | Allow {tilde}user notation to be used in requests. When |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 141 | specified with no parameter, requests to |
Miklos Vajna | 4fce51c | 2008-12-16 16:48:12 +0100 | [diff] [blame] | 142 | git://host/{tilde}alice/foo is taken as a request to access |
Junio C Hamano | 603968d | 2006-02-04 22:27:29 -0800 | [diff] [blame] | 143 | 'foo' repository in the home directory of user `alice`. |
| 144 | If `--user-path=path` is specified, the same request is |
| 145 | taken as a request to access `path/foo` repository in |
| 146 | the home directory of user `alice`. |
| 147 | |
Petr Baudis | b5cf3c8 | 2005-09-24 16:12:58 +0200 | [diff] [blame] | 148 | --verbose:: |
| 149 | Log details about the incoming connections and requested files. |
| 150 | |
Matthias Lederhofer | 6c35119 | 2006-07-14 17:53:29 +0200 | [diff] [blame] | 151 | --reuseaddr:: |
| 152 | Use SO_REUSEADDR when binding the listening socket. |
| 153 | This allows the server to restart without waiting for |
| 154 | old connections to time out. |
| 155 | |
| 156 | --detach:: |
| 157 | Detach from the shell. Implies --syslog. |
| 158 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 159 | --pid-file=<file>:: |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 160 | Save the process id in 'file'. Ignored when the daemon |
| 161 | is run under `--inetd`. |
Matthias Lederhofer | 6c35119 | 2006-07-14 17:53:29 +0200 | [diff] [blame] | 162 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 163 | --user=<user>:: |
| 164 | --group=<group>:: |
Tilman Sauerbeck | 678dac6 | 2006-08-22 19:37:41 +0200 | [diff] [blame] | 165 | Change daemon's uid and gid before entering the service loop. |
| 166 | When only `--user` is given without `--group`, the |
| 167 | primary group ID for the user is used. The values of |
| 168 | the option are given to `getpwnam(3)` and `getgrnam(3)` |
| 169 | and numeric IDs are not supported. |
| 170 | + |
| 171 | Giving these options is an error when used with `--inetd`; use |
| 172 | the facility of inet daemon to achieve the same before spawning |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 173 | 'git daemon' if needed. |
Junio C Hamano | 714d258 | 2013-04-12 09:08:31 -0700 | [diff] [blame] | 174 | + |
| 175 | Like many programs that switch user id, the daemon does not reset |
| 176 | environment variables such as `$HOME` when it runs git programs, |
| 177 | e.g. `upload-pack` and `receive-pack`. When using this option, you |
| 178 | may also want to set and export `HOME` to point at the home |
| 179 | directory of `<user>` before starting the daemon, and make sure any |
| 180 | Git configuration files in that directory are readable by `<user>`. |
Tilman Sauerbeck | 678dac6 | 2006-08-22 19:37:41 +0200 | [diff] [blame] | 181 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 182 | --enable=<service>:: |
| 183 | --disable=<service>:: |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 184 | Enable/disable the service site-wide per default. Note |
| 185 | that a service disabled site-wide can still be enabled |
| 186 | per repository if it is marked overridable and the |
Markus Heidelberg | 6285441 | 2009-04-18 11:46:06 +0200 | [diff] [blame] | 187 | repository enables the service with a configuration |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 188 | item. |
| 189 | |
Štěpán Němec | 62b4698 | 2010-10-08 19:31:15 +0200 | [diff] [blame] | 190 | --allow-override=<service>:: |
| 191 | --forbid-override=<service>:: |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 192 | Allow/forbid overriding the site-wide default with per |
| 193 | repository configuration. By default, all the services |
Jason St. John | 06ab60c | 2014-05-21 14:52:26 -0400 | [diff] [blame] | 194 | may be overridden. |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 195 | |
Felipe Contreras | 0460ed2 | 2013-05-08 20:16:55 -0500 | [diff] [blame] | 196 | --[no-]informative-errors:: |
Jeff King | d5570f4 | 2011-10-14 17:19:21 -0400 | [diff] [blame] | 197 | When informative errors are turned on, git-daemon will report |
| 198 | more verbose errors to the client, differentiating conditions |
| 199 | like "no such repository" from "repository not exported". This |
| 200 | is more convenient for clients, but may leak information about |
| 201 | the existence of unexported repositories. When informative |
| 202 | errors are not enabled, all errors report "access denied" to the |
| 203 | client. The default is --no-informative-errors. |
| 204 | |
Junio C Hamano | 93741e4 | 2012-08-14 11:37:51 -0700 | [diff] [blame] | 205 | --access-hook=<path>:: |
| 206 | Every time a client connects, first run an external command |
| 207 | specified by the <path> with service name (e.g. "upload-pack"), |
| 208 | path to the repository, hostname (%H), canonical hostname |
Jason St. John | 06ab60c | 2014-05-21 14:52:26 -0400 | [diff] [blame] | 209 | (%CH), IP address (%IP), and TCP port (%P) as its command-line |
Junio C Hamano | 93741e4 | 2012-08-14 11:37:51 -0700 | [diff] [blame] | 210 | arguments. The external command can decide to decline the |
| 211 | service by exiting with a non-zero status (or to allow it by |
| 212 | exiting with a zero status). It can also look at the $REMOTE_ADDR |
Tom Russello | 47d81b5 | 2016-06-08 00:35:07 +0200 | [diff] [blame] | 213 | and `$REMOTE_PORT` environment variables to learn about the |
Junio C Hamano | 93741e4 | 2012-08-14 11:37:51 -0700 | [diff] [blame] | 214 | requestor when making this decision. |
| 215 | + |
| 216 | The external command can optionally write a single line to its |
| 217 | standard output to be sent to the requestor as an error message when |
| 218 | it declines the service. |
| 219 | |
Andreas Ericsson | 4dbd135 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 220 | <directory>:: |
| 221 | A directory to add to the whitelist of allowed directories. Unless |
| 222 | --strict-paths is specified this will also include subdirectories |
| 223 | of each named directory. |
| 224 | |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 225 | SERVICES |
| 226 | -------- |
| 227 | |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 228 | These services can be globally enabled/disabled using the |
Jason St. John | 06ab60c | 2014-05-21 14:52:26 -0400 | [diff] [blame] | 229 | command-line options of this command. If finer-grained |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 230 | control is desired (e.g. to allow 'git archive' to be run |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 231 | against only in a few selected repositories the daemon serves), |
| 232 | the per-repository configuration file can be used to enable or |
| 233 | disable them. |
| 234 | |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 235 | upload-pack:: |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 236 | This serves 'git fetch-pack' and 'git ls-remote' |
Junio C Hamano | 355f541 | 2006-08-20 19:32:43 -0700 | [diff] [blame] | 237 | clients. It is enabled by default, but a repository can |
| 238 | disable it by setting `daemon.uploadpack` configuration |
| 239 | item to `false`. |
| 240 | |
Christian Couder | e2b1d1c | 2006-10-27 06:59:18 +0200 | [diff] [blame] | 241 | upload-archive:: |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 242 | This serves 'git archive --remote'. It is disabled by |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 243 | default, but a repository can enable it by setting |
Jeff King | 74190d2 | 2008-05-19 16:08:33 -0400 | [diff] [blame] | 244 | `daemon.uploadarch` configuration item to `true`. |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 245 | |
| 246 | receive-pack:: |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 247 | This serves 'git send-pack' clients, allowing anonymous |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 248 | push. It is disabled by default, as there is _no_ |
| 249 | authentication in the protocol (in other words, anybody |
| 250 | can push anything into the repository, including removal |
| 251 | of refs). This is solely meant for a closed LAN setting |
| 252 | where everybody is friendly. This service can be |
Michael Schubert | c6056fb | 2012-07-16 13:50:31 +0200 | [diff] [blame] | 253 | enabled by setting `daemon.receivepack` configuration item to |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 254 | `true`. |
Christian Couder | e2b1d1c | 2006-10-27 06:59:18 +0200 | [diff] [blame] | 255 | |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 256 | EXAMPLES |
| 257 | -------- |
Christian Couder | f8a5da6 | 2006-10-27 07:00:57 +0200 | [diff] [blame] | 258 | We assume the following in /etc/services:: |
| 259 | + |
| 260 | ------------ |
| 261 | $ grep 9418 /etc/services |
| 262 | git 9418/tcp # Git Version Control System |
| 263 | ------------ |
| 264 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 265 | 'git daemon' as inetd server:: |
| 266 | To set up 'git daemon' as an inetd service that handles any |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 267 | repository under the whitelisted set of directories, /pub/foo |
| 268 | and /pub/bar, place an entry like the following into |
| 269 | /etc/inetd all on one line: |
| 270 | + |
| 271 | ------------------------------------------------ |
Jonathan Nieder | 963a653 | 2008-06-30 17:15:57 -0500 | [diff] [blame] | 272 | git stream tcp nowait nobody /usr/bin/git |
| 273 | git daemon --inetd --verbose --export-all |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 274 | /pub/foo /pub/bar |
| 275 | ------------------------------------------------ |
| 276 | |
| 277 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 278 | 'git daemon' as inetd server for virtual hosts:: |
| 279 | To set up 'git daemon' as an inetd service that handles |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 280 | repositories for different virtual hosts, `www.example.com` |
| 281 | and `www.example.org`, place an entry like the following into |
| 282 | `/etc/inetd` all on one line: |
| 283 | + |
| 284 | ------------------------------------------------ |
Jonathan Nieder | 963a653 | 2008-06-30 17:15:57 -0500 | [diff] [blame] | 285 | git stream tcp nowait nobody /usr/bin/git |
| 286 | git daemon --inetd --verbose --export-all |
Jon Loeliger | 49ba83f | 2006-09-19 20:31:51 -0500 | [diff] [blame] | 287 | --interpolated-path=/pub/%H%D |
| 288 | /pub/www.example.org/software |
| 289 | /pub/www.example.com/software |
| 290 | /software |
| 291 | ------------------------------------------------ |
| 292 | + |
| 293 | In this example, the root-level directory `/pub` will contain |
| 294 | a subdirectory for each virtual host name supported. |
| 295 | Further, both hosts advertise repositories simply as |
| 296 | `git://www.example.com/software/repo.git`. For pre-1.4.0 |
| 297 | clients, a symlink from `/software` into the appropriate |
| 298 | default repository could be made as well. |
| 299 | |
| 300 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 301 | 'git daemon' as regular daemon for virtual hosts:: |
| 302 | To set up 'git daemon' as a regular, non-inetd service that |
Jon Loeliger | dd46762 | 2006-09-26 09:47:43 -0500 | [diff] [blame] | 303 | handles repositories for multiple virtual hosts based on |
| 304 | their IP addresses, start the daemon like this: |
| 305 | + |
| 306 | ------------------------------------------------ |
Jonathan Nieder | 963a653 | 2008-06-30 17:15:57 -0500 | [diff] [blame] | 307 | git daemon --verbose --export-all |
Jon Loeliger | dd46762 | 2006-09-26 09:47:43 -0500 | [diff] [blame] | 308 | --interpolated-path=/pub/%IP/%D |
| 309 | /pub/192.168.1.200/software |
| 310 | /pub/10.10.220.23/software |
| 311 | ------------------------------------------------ |
| 312 | + |
| 313 | In this example, the root-level directory `/pub` will contain |
| 314 | a subdirectory for each virtual host IP address supported. |
| 315 | Repositories can still be accessed by hostname though, assuming |
| 316 | they correspond to these IP addresses. |
| 317 | |
Junio C Hamano | f368f5a | 2007-09-01 04:01:54 -0700 | [diff] [blame] | 318 | selectively enable/disable services per repository:: |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 319 | To enable 'git archive --remote' and disable 'git fetch' against |
Junio C Hamano | f368f5a | 2007-09-01 04:01:54 -0700 | [diff] [blame] | 320 | a repository, have the following in the configuration file in the |
Matthieu Moy | 661c3e9 | 2016-06-28 13:40:15 +0200 | [diff] [blame] | 321 | repository (that is the file 'config' next to `HEAD`, 'refs' and |
Junio C Hamano | f368f5a | 2007-09-01 04:01:54 -0700 | [diff] [blame] | 322 | 'objects'). |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 323 | + |
| 324 | ---------------------------------------------------------------- |
Junio C Hamano | f368f5a | 2007-09-01 04:01:54 -0700 | [diff] [blame] | 325 | [daemon] |
| 326 | uploadpack = false |
Jeff King | 74190d2 | 2008-05-19 16:08:33 -0400 | [diff] [blame] | 327 | uploadarch = true |
Junio C Hamano | bdd7379 | 2007-08-29 03:32:12 -0700 | [diff] [blame] | 328 | ---------------------------------------------------------------- |
| 329 | |
| 330 | |
Joey Hess | 53ffb87 | 2008-10-24 01:48:50 -0400 | [diff] [blame] | 331 | ENVIRONMENT |
| 332 | ----------- |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 333 | 'git daemon' will set REMOTE_ADDR to the IP address of the client |
Joey Hess | 53ffb87 | 2008-10-24 01:48:50 -0400 | [diff] [blame] | 334 | that connected to it, if the IP address is available. REMOTE_ADDR will |
| 335 | be available in the environment of hooks called when |
| 336 | services are performed. |
| 337 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 338 | GIT |
| 339 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 340 | Part of the linkgit:git[1] suite |