Girocco/Config.pm: add jgit_compatible_bitmaps note
[girocco/readme.git] / Girocco / Config.pm
blob5ee3e52580bb2e7d39a9255804ec52578bca7771
1 package Girocco::Config;
3 use strict;
4 use warnings;
8 ## --------------
9 ## Basic settings
10 ## --------------
13 # Name of the service (typically a single word or a domain name)
14 # (no spaces allowed)
15 our $name = "GiroccoEx";
17 # Nickname of the service (undef for initial part of $name upto first '.')
18 # (no spaces allowed)
19 our $nickname = undef;
21 # Title of the service (as shown in gitweb)
22 # (may contain spaces)
23 our $title = "Example Girocco Hosting";
25 # Path to the Git binary to use (you MUST set this, even if to /usr/bin/git!)
26 our $git_bin = '/usr/bin/git';
28 # Path to the git-daemon binary to use (undef to use default)
29 # If $gitpullurl is undef this will never be used (assuming no git inetd
30 # service has been set up in that case).
31 # The default if this is undef is `$git_bin --exec-path`/git-daemon
32 our $git_daemon_bin = undef;
34 # Path to the git-http-backend binary to use (undef to use default)
35 # If both $httppullurl and $httpspushurl are undef this will never be used
36 # The default if this is undef is `$git_bin --exec-path`/git-http-backend
37 our $git_http_backend_bin = undef;
39 # Name (if in $PATH) or full path to netcat executable that accepts a -U option
40 # to connect to a unix socket. This may simply be 'nc' on many systems.
41 # See the ../src/dragonfly/README file for a DragonFly BSD nc with -U support.
42 # For a Linux-like system try installing the 'netcat-openbsd' package.
43 our $nc_openbsd_bin = 'nc.openbsd';
45 # Path to POSIX sh executable to use. Set to undef to use /bin/sh
46 our $posix_sh_bin = undef;
48 # Path to Perl executable to use. Set to undef to use Perl found in $PATH
49 our $perl_bin = undef;
51 # Path to gzip executable to use. Set to undef to use gzip found in $PATH
52 our $gzip_bin = undef;
54 # Path to OpenSSL/LibreSSL executable to use.
55 # Set to undef to use openssl found in $PATH
56 # Not used unless $httpspushurl is defined
57 our $openssl_bin = undef;
59 # Path to the sendmail instance to use. It should understand the -f <from>, -i and -t
60 # options as well as accepting a list of recipient addresses in order to be used here.
61 # You MUST set this, even if to '/usr/sbin/sendmail'!
62 # Setting this to 'sendmail.pl' is special and will automatically be expanded to
63 # a full path to the ../bin/sendmail.pl executable in this Girocco installation.
64 # sendmail.pl is a sendmail-compatible script that delivers the message directly
65 # using SMTP to a mail relay host. This is the recommended configuration as it
66 # minimizes the information exposed to recipients (no sender account names or uids),
67 # can talk to an SMTP server on another host (eliminating the need for a working
68 # sendmail and/or SMTP server on this host) and avoids any unwanted address rewriting.
69 # By default it expects the mail relay to be listening on localhost port 25.
70 # See the sendmail.pl section below for more information on configuring sendmail.pl.
71 our $sendmail_bin = 'sendmail.pl';
73 # E-mail of the site admin
74 our $admin = 'admin@example.org';
76 # Sender of emails
77 # This is the SMTP 'MAIL FROM:' value
78 # It will be passed to $sendmail_bin with the -f option
79 # Some sites may not allow non-privileged users to pass the -f option to
80 # $sendmail_bin. In that case set this to undef and no -f option will be
81 # passed which means the 'MAIL FROM:' value will be the user the mail is
82 # sent as (either $cgi_user or $mirror_user depending on the activity).
83 # To avoid having bounce emails go to $admin, this may be set to something
84 # else such as 'admin-noreply@example.org' and then the 'admin-noreply' address
85 # may be redirected to /dev/null. Setting this to '' or '<>' is not
86 # recommended because that will likely cause the emails to be marked as SPAM
87 # by the receiver's SPAM filter. If $sendmail_bin is set to 'sendmail.pl' this
88 # value must be acceptable to the receiving SMTP server as a 'MAIL FROM:' value.
89 # If this is set to undef and 'sendmail.pl' is used, the 'MAIL FROM:' value will
90 # be the user the mail is sent as (either $cgi_user or $mirror_user).
91 our $sender = $admin;
93 # Copy $admin on failure/recovery messages?
94 our $admincc = 1;
96 # Girocco branch to use for html.cgi view source links (undef for HEAD)
97 our $giroccobranch = undef;
99 # PATH adjustments
100 # If the PATH needs to be customized to find required executables on
101 # the system, it can be done here.
102 # IMPORTANT: If PATH is NOT set here,
103 # it *will* be set to `/usr/bin/getconf PATH`!
104 # To keep whatever PATH is in effect when Girocco is installed use:
105 #$ENV{PATH} = $ENV{PATH};
106 # To add /usr/local/bin to the standard PATH, use something like this:
107 #use Girocco::Dumper qw(GetConfPath);
108 #$ENV{PATH} = GetConfPath().":/usr/local/bin";
112 ## ----------------------
113 ## Git user agent strings
114 ## ----------------------
117 # Git clients (i.e. fetch/clone) always send a user agent string when fetching
118 # over HTTP. Since version 1.7.12.1 an 'agent=' capability string is included
119 # as well which affects git:, smart HTTP and ssh: protocols.
121 # These settings allow the default user agent string to be changed independently
122 # for fetch/clone operations (only matters if $mirror is true) and server
123 # operations (some other Git client fetching from us). Note that it is not
124 # possible to suppress the capability entirely although it can be set to an
125 # empty string. If these values are not set, the default user agent string
126 # will be used. Typically (unless Git was built with non-standard options) the
127 # default is "git/" plus the version. So for example "git/1.8.5.6" or
128 # "git/2.1.4" might be seen.
130 # One might want to change the default user agent strings in order to prevent
131 # an attacker from learning the exact Git version being used to avoid being
132 # able to quickly target any version-specific vulnerabilities. Note that
133 # no matter what's set here, an attacker can easily determine whether a server
134 # is running JGit, libgit2 or Git and for Git whether it's version 1.7.12.1 or
135 # later. A reasonable value to hide the exact Git version number while
136 # remaining compatible with servers that require a "Git/" user agent string
137 # would be something like "git/2" or even just "git/".
139 # The GIT_USER_AGENT value to use when acting as a client (i.e. clone/fetch)
140 # This value is only used if $mirror is true and at least one mirror is set up.
141 # Setting this to the empty string will suppress the HTTP User-Agent header,
142 # but will still include an "agent=" capability in the packet protocol. The
143 # empty string is not recommended because some servers match on "git/".
144 # Leave undef to use the default Git user agent string
145 # IMPORTANT: some server sites will refuse to serve up Git repositories unless
146 # the client user agent string contains "Git/" (matched case insensitively)!
147 our $git_client_ua = undef;
149 # The GIT_USER_AGENT value to use when acting as a server (i.e. some Git client
150 # is fetching/cloning from us).
151 # Leave undef to use the default Git user agent string
152 our $git_server_ua = undef;
156 ## -------------
157 ## Feature knobs
158 ## -------------
161 # Enable mirroring mode if true (see "Foreign VCS mirrors" section below)
162 our $mirror = 1;
164 # Enable push mode if true
165 our $push = 1;
167 # If both $mirror and $push are enabled, setting this to 'mirror' pre-selects
168 # mirror mode on the initial regproj display, otherwise 'push' mode will be
169 # pre-selected. When forking the initial mode will be 'push' if $push enabled.
170 our $initial_regproj_mode = 'mirror';
172 # Enable user management if true; this means the interface for registering
173 # user accounts and uploading SSH keys. This implies full chroot.
174 our $manage_users = 1;
176 # Minimum key length (in bits) for uploaded SSH RSA/DSA keys.
177 # If this is not set (i.e. undef) keys as small as 512 bits will be allowed.
178 # Nowadays keys less than 2048 bits in length should probably not be allowed.
179 # Note, however, that versions of OpenSSH starting with 4.3p1 will only generate
180 # DSA keys of exactly 1024 bits in length even though that length is no longer
181 # recommended. (OpenSSL can be used to generate DSA keys with lengths > 1024.)
182 # OpenSSH does not have any problem generating RSA keys longer than 1024 bits.
183 # This setting is only checked when new keys are added so setting it/increasing it
184 # will not affect existing keys. For maximum compatibility a value of 1024 may
185 # be used however 2048 is recommended. Setting it to anything other than 1024,
186 # 2048 or 3072 may have the side effect of making it very difficult to generate
187 # DSA keys that satisfy the restriction (but RSA keys should not be a problem).
188 # Note that no matter what setting is specified here keys smaller than 512 bits
189 # will never be allowed via the reguser.cgi/edituser.cgi interface.
190 # RECOMMENDED VALUE: 2048 (ok) or 3072 (better)
191 our $min_key_length = 3072;
193 # Disable DSA public keys?
195 # If this is set to 1, adding DSA keys at reguser.cgi/edituser.cgi time will be
196 # prohibited. If $pushurl is undef then this is implicitly set to 1 since DSA
197 # keys are not usable with https push.
199 # OpenSSH will only generate 1024 bit DSA keys starting with version 4.3p1.
200 # Even if OpenSSL is used to generate a longer DSA key (which can then be used
201 # with OpenSSH), the SSH protocol itself still forces use of SHA-1 in the DSA
202 # signature blob which tends to defeat the purpose of going to a longer key in
203 # the first place. So it may be better from a security standpoint to simply
204 # disable DSA keys especially if $min_key_length and $rsakeylength have been set
205 # to something higher such as 3072 or 4096.
207 # This setting is only checked when new keys are added so changing it will not
208 # affect existing keys. There is no way to disable DSA keys in the sshd_config
209 # file of older versions of the OpenSSH server, but newer versions of OpenSSH
210 # WILL DISABLE DSA KEYS BY DEFAULT!
212 # IMPORTANT: If you do enable DSA keys ($disable_dsa is set to 0) and you are
213 # using a more recent version of the OpenSSH server software in the
214 # chroot jail, you MUST manually ADD the following line
215 # (the "+" IS REQUIRED) to the $chroot/j/etc/ssh/sshd_config file
216 # otherwise dsa keys WILL NOT BE ACCEPTED!
218 # PubkeyAcceptedKeyTypes +ssh-dss
220 # If this is set to 1, no ssh_host_dsa_key will be generated or used with the
221 # sshd running in the jail (but if the sshd_config has already been generated
222 # in the jail, it must be removed and 'sudo make install' run again or otherwise
223 # the sshd_config needs to be edited by hand for the change to take effect).
225 # RECOMMENDED VALUE: 1
226 our $disable_dsa = 1;
228 # Enable the special 'mob' user if set to 'mob'
229 our $mob = "mob";
231 # Let users set admin passwords; if false, all password inputs are assumed empty.
232 # This will make new projects use empty passwords and all operations on them
233 # unrestricted, but you will be able to do no operations on previously created
234 # projects you have set a password on.
235 our $project_passwords = 1;
237 # How to determine project owner; 'email' adds a form item asking for their
238 # email contact, 'source' takes realname of owner of source repository if it
239 # is a local path (and empty string otherwise). 'source' is suitable in case
240 # the site operates only as mirror of purely local-filesystem repositories.
241 our $project_owners = 'email';
243 # Which project fields to make editable, out of 'shortdesc', 'homepage', 'README',
244 # 'cleanmirror', 'notifymail', 'reverseorder', 'summaryonly', 'notifytag' and 'notifyjson'
245 # 'notifycia' was used by the now defunct CIA service and while allowing it to
246 # be edited does work and the value is saved, the value is totally ignored by Girocco
247 our @project_fields = qw(cleanmirror homepage shortdesc README notifymail reverseorder summaryonly notifytag notifyjson);
249 # Which project fields to protect -- they will first require the project
250 # password to be entered before they can even be viewed on the editproj page
251 our $protect_fields = {map({$_ => 1} qw(notifymail notifytag notifyjson))};
253 # Registration/Edit expiration time
254 # The registration form must be completed within this amount of time
255 # or it will time out and require starting over. The project edit page
256 # must be submitted within this amount of time or it will time out and
257 # require starting over.
258 our $project_edit_timeout = 1800; # 30 minutes
260 # Minimal number of seconds to pass between two updates of a project.
261 our $min_mirror_interval = 3600; # 1 hour
263 # Minimal number of seconds to pass between two garbage collections of a project.
264 our $min_gc_interval = 604800; # 1 week
266 # Minimal number of seconds to pass after first failure before sending failure email.
267 # A mirror update failed message will not be sent until mirror updates have been
268 # failing for at least this long. Set to 0 to send a failure message right away
269 # (provided the $min_mirror_failure_message_count condition has been met).
270 our $min_mirror_failure_message_interval = 216000; # 2.5 days
272 # Minimal number of consecutive failures required before sending failure email.
273 # A mirror update failed message will not be sent until mirror updates have failed
274 # for this many consecutive updates. Set to 0 to send a failure message right away
275 # (provided the $min_mirror_failure_message_interval condition has been met).
276 our $min_mirror_failure_message_count = 3;
278 # Maximum window memory size when repacking. If this is set, it will be used
279 # instead of the automatically computed value if it's less than that value.
280 # May use a 'k', 'm', or 'g' suffix otherwise value is in bytes.
281 our $max_gc_window_memory_size = undef;
283 # Maximum big file threshold size when repacking. If this is set, it will be
284 # used instead of the automatically computed value if it's less than that value.
285 # May use a 'k', 'm', or 'g' suffix otherwise value is in bytes.
286 our $max_gc_big_file_threshold_size = undef;
288 # Whether or not to run the ../bin/update-pwd-db script whenever the etc/passwd
289 # database is changed. This is typically needed (i.e. set to a true value) for
290 # FreeBSD style systems when using an sshd chroot jail for push access. So if
291 # $pushurl is undef or the system Girocco is running on is not like FreeBSD
292 # (e.g. a master.passwd file that must be transformed into pwd.db and spwd.db), then
293 # this setting should normally be left false (i.e. 0). See comments in the
294 # provided ../bin/update-pwd-db script about when and how it's invoked.
295 our $update_pwd_db = 0;
297 # Port the sshd running in the jail should listen on
298 # Be sure to update $pushurl to match
299 # Not used if $pushurl is undef
300 our $sshd_jail_port = 22;
302 # If this is true then host names used in mirror source URLs will be checked
303 # and any that are not DNS names (i.e. IPv4 or IPv6) or match one of the DNS
304 # host names in any of the URL settings below will be rejected.
305 our $restrict_mirror_hosts = 1;
307 # If $restrict_mirror_hosts is enabled this is the minimum number of labels
308 # required in a valid dns name. Normally 2 is the correct value, but if
309 # Girocco is being used internally where a common default or search domain
310 # is set for everyone then this should be changed to 1 to allow a dns name
311 # with a single label in it. No matter what is set here at least 1 label
312 # is always required when $restrict_mirror_hosts is enabled.
313 our $min_dns_labels = 2;
315 # If defined, pass this value to format-readme as its `-m` option
316 # When format-readme is formatting an automatic readme, it will skip
317 # anything larger than this. The default is 32768 if unset.
318 # See `bin/format-readme -h` for details.
319 our $max_readme_size = undef;
321 # Maximum size of any single email sent by mail.sh in K (1024-byte) units
322 # If message is larger it will be truncated with a "...e-mail trimmed" line
323 # RECOMMENDED VALUE: 256 - 5120 (.25M - 5M)
324 our $mailsh_sizelimit = 512;
328 ## ----------------------
329 ## Miscellaneous Settings
330 ## ----------------------
333 # When creating a push project the initial branch will, by default, be
334 # set to refs/heads/$initial_branch even on Git versions that do not have
335 # support for `git init --initial-branch=$initial_branch`.
336 # If this value is unset or invalid the default initial branch will always
337 # be "master". Note that this only applies to newly created "push" projects;
338 # mirror projects and "adopted" projects ignore this setting.
339 # RECOMMENDED VALUE: whatever-your-favored-initial-branch-name-is
340 #our $initial_branch = "supercalifragilisticexpialidocious";
341 #our $initial_branch = "frabjous";
342 our $initial_branch = undef;
346 ## -------------------
347 ## Foreign VCS mirrors
348 ## -------------------
351 # Note that if any of these settings are changed from true to false, then
352 # any pre-existing mirrors using the now-disabled foreign VCS will stop
353 # updating, new mirrors using the now-disabled foreign VCS will be disallowed
354 # and attempts to update ANY project settings for a pre-existing project that
355 # uses a now-disabled foreign VCS source URL will also be disallowed.
357 # If $mirror is true and $mirror_svn is true then mirrors from svn source
358 # repositories will be allowed (and be converted to Git). These URLs have
359 # the form svn://... or svn+http://... or svn+https://...
360 # Since this functionality makes use of the "git svn" command and is maintained
361 # with Git, it tends to be kept up-to-date and highly usable.
362 # Note that for this to work the "svn" command line command must be available
363 # in PATH and the "git svn" commands must work (which generally requires both
364 # Perl and the subversion perl bindings be installed).
365 # RECOMMENDED VALUE: 1 (if the necessary prerequisites are installed)
366 our $mirror_svn = 1;
368 # Prior to Git v1.5.1, git-svn always used a log window size of 1000.
369 # Starting with Git v1.5.1, git-svn defaults to using a log window size of 100
370 # and provides a --log-window-size= option to change it. Starting with Git
371 # v2.2.0, git-svn disconnects and reconnects to the server every log window size
372 # interval to attempt to reduce memory use by git-svn. If $svn_log_window_size
373 # is undefined, Girocco will use a log window size of 250 (instead of the
374 # the default 100). If $svn_log_window_size is set, Girocco will use that
375 # value instead. Beware that setting it too low (i.e. < 50) will almost
376 # certainly cause performance issues if not failures. Unless there are concerns
377 # about git-svn memory use on a server with extremely limited memory, the
378 # value of 250 that Girocco uses by default should be fine. Obviously if
379 # $mirror or $mirror_svn is false this setting is irrelevant.
380 our $svn_log_window_size = undef;
382 # If $mirror is true and $mirror_darcs is true then mirrors from darcs source
383 # repositories will be allowed (and be converted to Git). These URLs have
384 # the form darcs+http://... darcs+https://... (and deprecated darcs://...)
385 # Note that for this to work the "darcs" command line command must be available
386 # in PATH and so must python (required to run the darcs-fast-export script).
387 # This support depends on items updated separately from Git and which may easily
388 # become out-of-date or incompatible (e.g. new python version).
389 # NOTE: If this is set to 0, the girocco-darcs-fast-export.git
390 # submodule need not be initialized or checked out.
391 # RECOMMENDED VALUE: 0 (unless you have a need to mirror darcs repos)
392 our $mirror_darcs = 0;
394 # If $mirror is true and $mirror_bzr is true then mirrors from bzr source
395 # repositories will be allowed (and be converted to Git). These URLs have
396 # the form bzr://...
397 # Note that for this to work the "bzr" command line command must be available
398 # in PATH (it's a python script so python is required as well).
399 # This support depends on items updated separately from Git and which may easily
400 # become out-of-date or incompatible (e.g. new python version).
401 # RECOMMENDED VALUE: 0 (unless you have a need to mirror bzr repos)
402 our $mirror_bzr = 0;
404 # If $mirror is true and $mirror_hg is true then mirrors from hg source
405 # repositories will be allowed (and be converted to Git). These URLs have
406 # the form hg+http://... or hg+https://...
407 # Note that for this to work the "hg" command line command must be available
408 # in PATH and so must python (required to run the hg-fast-export.py script).
409 # Note that if the PYTHON environment variable is set that will be used instead
410 # of just plain "python" to run the hg-fast-export.py script (which needs to
411 # be able to import from mercurial). Currently the hg-fast-export.py script
412 # used for this feature is likely incompatible with python 3 or later.
413 # Repositories created via this facility may need to be "reset" if the upstream
414 # hg repository moves the tip revision backwards and creates "unnamed heads".
415 # This support depends on items updated separately from Git and which may easily
416 # become out-of-date or incompatible (e.g. new python version).
417 # NOTE: If this is set to 0, the girocco-hg-fast-export.git
418 # submodule need not be initialized or checked out.
419 # RECOMMENDED VALUE: 0 (unless you have a need to mirror hg repos)
420 our $mirror_hg = 0;
424 ## -----
425 ## Paths
426 ## -----
429 # Path where the main chunk of Girocco files will be installed
430 # This will get COMPLETELY OVERWRITTEN by each make install!!!
431 # MUST be an absolute path
432 our $basedir = '/home/repo/repomgr';
434 # Path where the automatically generated non-user certificates will be stored
435 # (The per-user certificates are always stored in $chroot/etc/sshcerts/)
436 # This is preserved by each make install and MUST NOT be under $basedir!
437 # The secrets used to generate TimedTokens are also stored in here.
438 # MUST be an absolute path
439 our $certsdir = '/home/repo/certs';
441 # The repository collection
442 # "$reporoot/_recyclebin" will also be created for use by toolbox/trash-project.pl
443 # MUST be an absolute path
444 our $reporoot = "/srv/git";
446 # The repository collection's location within the chroot jail
447 # Normally $reporoot will be bind mounted onto $chroot/$jailreporoot
448 # Should NOT start with '/'
449 our $jailreporoot = "srv/git";
451 # The chroot for ssh pushing; location for project database and other run-time
452 # data even in non-chroot setups
453 # MUST be an absolute path
454 our $chroot = "/home/repo/j";
456 # An installation that will never run a chrooted sshd should set this
457 # to a true value (e.g. 1) to guarantee that jailsetup for a chrooted
458 # sshd never takes place no matter what user runs `make install`.
459 # Note that the "jailsetup.sh" script will still run to do the database
460 # setup that's stored in $chroot regardless of this setting, it will just
461 # always run in "dbonly" mode when this setting is true.
462 our $disable_jailsetup = 0;
464 # The gitweb files web directory (corresponds to $gitwebfiles)
465 # Note that it is safe to place this under $basedir since it's set up after
466 # $basedir is completely replaced during install time. Be WARNED, however,
467 # that normally the install process only adds/replaces things in $webroot,
468 # but if $webroot is under $basedir then it will be completely removed and
469 # rebuilt each time "make install" is run. This will make gitweb/git-browser
470 # web services very briefly unavailable while this is happening.
471 # MUST be an absolute path
472 our $webroot = "/home/repo/www";
474 # The CGI-enabled web directory (corresponds to $gitweburl and $webadmurl)
475 # This will not be web-accessible except that if any aliases point to
476 # a *.cgi file in here it will be allowed to run as a cgi-script.
477 # Note that it is safe to place this under $basedir since it's set up after
478 # $basedir is completely replaced during install time. Be WARNED, however,
479 # that normally the install process only adds/replaces things in $cgiroot,
480 # but if $cgiroot is under $basedir then it will be completely removed and
481 # rebuilt each time "make install" is run. This will make gitweb/git-browser
482 # web services very briefly unavailable while this is happening.
483 # MUST be an absolute path
484 our $cgiroot = "/home/repo/cgibin";
486 # A web-accessible symlink to $reporoot (corresponds to $httppullurl, can be undef)
487 # If using the sample apache.conf (with paths suitably updated) this is not required
488 # to serve either smart or non-smart HTTP repositories to the Git client
489 # MUST be an absolute path if not undef
490 our $webreporoot = "/home/repo/www/r";
492 # The location to store the project list cache, gitweb project list and gitweb
493 # cache file. Normally this should not be changed. Note that it must be in
494 # a directory that is writable by $mirror_user and $cgi_user (just in case the
495 # cache file is missing). The directory should have its group set to $owning_group.
496 # Again, this setting should not normally need to be changed.
497 # MUST be an absolute path
498 our $projlist_cache_dir = "$chroot/etc";
502 ## ----------------------------------------------------
503 ## Certificates (only used if $httpspushurl is defined)
504 ## ----------------------------------------------------
507 # path to root certificate (undef to use automatic root cert)
508 # this certificate is made available for easy download and should be whatever
509 # the root certificate is for the https certificate being used by the web server
510 our $rootcert = undef;
512 # The certificate to sign user push client authentication certificates with (undef for auto)
513 # The automatically generated certificate should always be fine
514 our $clientcert = undef;
516 # The private key for $clientcert (undef for auto)
517 # The automatically generated key should always be fine
518 our $clientkey = undef;
520 # The client certificate chain suffix (a pemseq file to append to user client certs) (undef for auto)
521 # The automatically generated chain should always be fine
522 # This suffix will also be appended to the $mobusercert before making it available for download
523 our $clientcertsuffix = undef;
525 # The mob user certificate signed by $clientcert (undef for auto)
526 # The automatically generated certificate should always be fine
527 # Not used unless $mob is set to 'mob'
528 # The $clientcertsuffix will be appended before making $mobusercert available for download
529 our $mobusercert = undef;
531 # The private key for $mobusercert (undef for auto)
532 # The automatically generated key should always be fine
533 # Not used unless $mob is set to 'mob'
534 our $mobuserkey = undef;
536 # Server alt names to embed in the auto-generated girocco_www_crt.pem certificate.
537 # The common name (CN) in the server certificate is the host name from $httpspushurl.
538 # By default no server alt names are embedded (not even the host from $httpspushurl).
539 # If the web server configuration is not using this auto-generated server certificate
540 # then the values set here will have no impact and this setting can be ignored.
541 # To embed server alternative names, list each (separated by spaces). The names
542 # may be DNS names, IPv4 addresses or IPv6 addresses (NO surrounding '[' ']' please).
543 # If ANY DNS names are included here be sure to also include the host name from
544 # the $httpspushurl or else standards-conforming clients will fail with a host name
545 # mismatch error when they attempt to verify the connection.
546 #our $wwwcertaltnames = 'example.com www.example.com git.example.com 127.0.0.1 ::1';
547 our $wwwcertaltnames = undef;
549 # The key length for automatically generated RSA private keys (in bits).
550 # These keys are then used to create the automatically generated certificates.
551 # If undef or set to a value less than 2048, then 2048 will be used.
552 # Set to 3072 to generate more secure keys/certificates. Set to 4096 (or higher) for
553 # even greater security. Be warned that setting to a non-multiple of 8 and/or greater
554 # than 4096 could negatively impact compatibility with some clients.
555 # The values 2048, 3072 and 4096 are expected to be compatible with all clients.
556 # Note that OpenSSL has no problem with > 4096 or non-multiple of 8 lengths.
557 # See also the $min_key_length setting above to restrict user key sizes.
558 # This value is also used when generating the ssh_host_rsa_key for the chroot jail sshd.
559 # RECOMMENDED VALUE: 3072
560 our $rsakeylength = 3072;
564 ## -------------
565 ## URL addresses
566 ## -------------
569 # URL of the gitweb.cgi script (must be in pathinfo mode). If the sample
570 # apache.conf configuration is used, the trailing "/w" is optional.
571 our $gitweburl = "http://repo.or.cz/w";
573 # URL of the extra gitweb files (CSS, .js files, images, ...)
574 our $gitwebfiles = "http://repo.or.cz";
576 # URL of the Girocco CGI web admin interface (Girocco cgi/ subdirectory)
577 # e.g. reguser.cgi, edituser.cgi, regproj.cgi, editproj.cgi etc.
578 our $webadmurl = "http://repo.or.cz";
580 # URL of the Girocco CGI bundles information generator (Girocco cgi/bundles.cgi)
581 # If the sample apache.conf configuration is used, the trailing "/b" is optional.
582 # This is different from $httpbundleurl. This URL lists all available bundles
583 # for a project and returns that as an HTML page.
584 our $bundlesurl = "http://repo.or.cz/b";
586 # URL of the Girocco CGI html templater (Girocco cgi/html.cgi)
587 # If mod_rewrite is enabled and the sample apache.conf configuration is used,
588 # the trailing "/h" is optional when the template file name ends in ".html"
589 # (which all the provided ones do).
590 our $htmlurl = "http://repo.or.cz/h";
592 # HTTP URL of the repository collection (undef if N/A)
593 # If the sample apache.conf configuration is used, the trailing "/r" is optional.
594 our $httppullurl = "http://repo.or.cz/r";
596 # HTTP URL of the repository collection when fetching a bundle (undef if N/A)
597 # Normally this will be the same as $httppullurl, but note that the bundle
598 # fetching logic is located in git-http-backend-verify so whatever URL is
599 # given here MUST end up running the git-http-backend-verify script!
600 # For example, if we're fetching the 'clone.bundle' for the 'girocco.git'
601 # repository, the final URL will be "$httpbundleurl/girocco.git/clone.bundle"
602 # If the sample apache.conf configuration is used, the trailing "/r" is optional.
603 # This is different from $bundlesurl. This URL fetches a single Git-format
604 # .bundle file that is only usable with the 'git bundle' command.
605 our $httpbundleurl = "http://repo.or.cz/r";
607 # HTTPS push URL of the repository collection (undef if N/A)
608 # If this is defined, the openssl command must be available
609 # The sample apache.conf configuration requires mod_ssl, mod_authn_anon and
610 # mod_rewrite be enabled to support https push operations.
611 # Normally this should be set to $httppullurl with http: replaced with https:
612 # If the sample apache.conf configuration is used, the trailing "/r" is optional.
613 our $httpspushurl = undef;
615 # Git URL of the repository collection (undef if N/A)
616 # (You need to set up git-daemon on your system, and Girocco will not
617 # do this particular thing for you.)
618 our $gitpullurl = "git://repo.or.cz";
620 # Pushy SSH URL of the repository collection (undef if N/A)
621 # Note that the "/$jailreporoot" portion is optional and will be automatically
622 # added if appropriate when omitted by the client so this URL can typically
623 # be made the same as $gitpullurl with git: replaced with ssh:
624 our $pushurl = "ssh://repo.or.cz/$jailreporoot";
626 # URL of gitweb of this Girocco instance (set to undef if you're not nice
627 # to the community)
628 our $giroccourl = "$Girocco::Config::gitweburl/girocco.git";
632 ## -------------------
633 ## Web server controls
634 ## -------------------
637 # If true then non-smart HTTP access will be disabled
638 # There's normally no reason to leave non-smart HTTP access enabled
639 # since downloadable bundles are provided. However, in case the
640 # non-smart HTTP access is needed for some reason, this can be set to undef or 0.
641 # This affects access via http: AND https: and processing of apache.conf.in.
642 # Note that this setting does not affect gitweb, ssh: or git: URL access in any way.
643 # RECOMMENDED VALUE: 1
644 our $SmartHTTPOnly = 1;
646 # If true, the https <VirtualHost ...> section in apache.conf.in will be
647 # automatically enabled when it's converted to apache.conf by the conversion
648 # script. Do NOT enable this unless the required Apache modules are present
649 # and loaded (mod_ssl, mod_rewrite, mod_authn_anon) AND $httpspushurl is
650 # defined above otherwise the server will fail to start (with various errors)
651 # when the resulting apache.conf is used.
652 our $TLSHost = 0;
654 # If true, the information about configuring a Git client to trust
655 # a Girocco-generated TLS root will be suppressed presuming that some other
656 # means (such as LetsEncrypt.org) has been used to generate a TLS web
657 # certificate signed by a pre-trusted root. This does NOT affect the
658 # information on how to configure https push certificates as those are still
659 # required in order to push over https regardless of what web server certificate
660 # may be in use.
661 # RECOMMENDED VALUE: 0 (for girocco-generated root & server certificates)
662 # RECOMMENDED VALUE: 1 (for LetsEncrypt etc. generated server certificates)
663 our $pretrustedroot = 0;
667 ## ------------------------
668 ## Lighttpd server controls
669 ## ------------------------
672 # Of course, the lighttp.conf.in file can be edited directly, but these
673 # settings allow it to contain conditional sections that show how the
674 # various configurations can be achieved.
676 # If lighttpd will not be used, these settings can be ignored.
678 # N.B. The lighttpd.conf.in file MUST be edited if lighttpd should listen
679 # on ports other than 80 (http) and 443 (https)
681 # If true, the lighttpd.conf.in file will be processed into a lighttpd.conf
682 # file that tries very hard to be a complete, standalone configuration file for
683 # a lighttpd server. In other words, it will set things in the lighttpd global
684 # configuration that would not be needed (or safe) if it were being included
685 # to provide only a "virtual host" configuration.
686 # RECOMMENDED VALUE: 0 (for use as an included "virtual host" configuration)
687 # RECOMMENDED VALUE: 1 (for use as a standalone configuration file)
688 our $lighttpd_standalone = 0;
690 # Only applicable if $lighttpd_standlone has been set to a true value,
691 # otherwise this setting has no effect.
692 # If true, the parts of the standalone lighttpd configuration that would
693 # require privileges (e.g. log file, pid file, etc.) will be redirected to
694 # "unprivileged" locations and neither the username nor groupname settings
695 # will be set. Otherwise "standard" locations and so forth will be used
696 # (such as /var/run, /var/log etc.). Note that this will NOT change the
697 # ports lighttpd attempts to listen on -- edit lighttpd.conf.in to do that
698 # and note that the port numbers will likely need to be changed in order to
699 # run in unprivileged mode (e.g. to 8080 and 8443).
700 # RECOMMENDED_VALUE: 0 (if running privileged as $lighttpd_standalone)
701 # RECOMMENDED_VALUE: 1 (if running unprivileged as $lighttpd_standalone)
702 our $lighttpd_unprivileged = 0;
704 # If true, listen only to the loopback interface (i.e. 127.0.0.1/::1)
705 # Otherwise allow incoming connections from anywhere
706 # RECOMMENDED_VALUE: 0 (for an externally accessible girocco web interface)
707 # RECOMMENDED_VALUE: 1 (for a localhost-accessible-only girocco web interface)
708 our $lighttpd_loopback_only = 0;
710 # This will be ignored unless $lighttpd_standalone is a false value
711 # See the copious comments in lighttpd.conf.in (search for TLSHost)
712 # RECOMMENDED_VALUE: 0 (if !$lighttpd_standalone but no other TLS hosts)
713 # RECOMMENDED_VALUE: 1 (if !$lighttpd_standalone and other TLS hosts are present)
714 our $lighttpd_tls_virtualhost = 1;
718 ## ------------------------
719 ## Some templating settings
720 ## ------------------------
723 # Legal warning (on reguser and regproj pages)
724 our $legalese = <<EOT;
725 <p>By submitting this form, you are confirming that you will mirror or push
726 only what we can store and show to anyone else who can visit this site without
727 breaking any law, and that you will be nice to all small furry animals.
728 <sup class="sup"><span><a href="/h/about.html">(more details)</a></span></sup>
729 </p>
732 # Pre-configured mirror sources (set to undef for none)
733 # Arrayref of name - record pairs, the record has these attributes:
734 # label: The label of this source
735 # url: The template URL; %1, %2, ... will be substituted for inputs
736 # desc: Optional VERY short description
737 # link: Optional URL to make the desc point at
738 # inputs: Arrayref of hashref input records:
739 # label: Label of input record
740 # suffix: Optional suffix
741 # If the inputs arrayref is undef, single URL input is shown,
742 # pre-filled with url (probably empty string).
743 our $mirror_sources = [
745 label => 'Anywhere',
746 url => '',
747 desc => 'Any HTTP/Git/rsync pull URL - bring it on!',
748 inputs => undef
751 label => 'GitHub',
752 url => 'https://github.com/%1/%2.git',
753 desc => 'GitHub Social Code Hosting',
754 link => 'https://github.com/',
755 inputs => [ { label => 'User:' }, { label => 'Project:', suffix => '.git' } ]
758 label => 'GitLab',
759 url => 'https://gitlab.com/%1/%2.git',
760 desc => 'Engulfed the Green and Orange Boxes',
761 link => 'https://gitlab.com/',
762 inputs => [ { label => 'User:' }, { label => 'Project:', suffix => '.git' } ]
765 label => 'Bitbucket',
766 url => 'https://bitbucket.org/%1/%2.git',
767 desc => 'Embraced the best DVCS',
768 link => 'https://bitbucket.org/',
769 inputs => [ { label => 'User:' }, { label => 'Project:', suffix => '.git' } ]
773 # You can customize the gitweb interface widely by editing
774 # gitweb/gitweb_config.perl
778 ## -------------------
779 ## Permission settings
780 ## -------------------
783 # Girocco needs some way to manipulate write permissions to various parts of
784 # all repositories; this concerns three entities:
785 # - www-data: the web interface needs to be able to rewrite few files within
786 # the repository
787 # - repo: a user designated for cronjobs; handles mirroring and repacking;
788 # this one is optional if not $mirror
789 # - others: the designated users that are supposed to be able to push; they
790 # may have account either within chroot, or outside of it
792 # There are several ways how to use Girocco based on a combination of the
793 # following settings.
795 # (Non-chroot) UNIX user the CGI scripts run on; note that if some non-related
796 # untrusted CGI scripts run on this account too, that can be a big security
797 # problem and you'll probably need to set up suexec (poor you).
798 # This must always be set.
799 our $cgi_user = 'www-data';
801 # (Non-chroot) UNIX user performing mirroring jobs; this is the user who
802 # should run all the daemons and cronjobs and
803 # the user who should be running make install (if not root).
804 # This must always be set.
805 our $mirror_user = 'repo';
807 # (Non-chroot) UNIX group owning the repositories by default; it owns whole
808 # mirror repositories and at least web-writable metadata of push repositories.
809 # If you undefine this, all the data will become WORLD-WRITABLE.
810 # Both $cgi_user and $mirror_user should be members of this group!
811 our $owning_group = 'repo';
813 # Whether to use chroot jail for pushing; this must be always the same
814 # as $manage_users.
815 # TODO: Gitosis support for $manage_users and not $chrooted?
816 our $chrooted = $manage_users;
818 # How to control permissions of push-writable data in push repositories:
819 # * 'Group' for the traditional model: The $chroot/etc/group project database
820 # file is used as the UNIX group(5) file; the directories have gid appropriate
821 # for the particular repository and are group-writable. This works only if
822 # $chrooted so that users are put in the proper groups on login when using
823 # SSH push. Smart HTTPS push does not require a chroot to work -- simply
824 # run "make install" as the non-root $mirror_user user, but leave
825 # $manage_users and $chrooted enabled.
826 # * 'ACL' for a model based on POSIX ACL: The directories are coupled with ACLs
827 # listing the users with push permissions. This works for both chroot and
828 # non-chroot setups, however it requires ACL support within the filesystem.
829 # This option is BASICALLY UNTESTED, too. And UNIMPLEMENTED. :-)
830 # * 'Hooks' for a relaxed model: The directories are world-writable and push
831 # permission control is purely hook-driven. This is INSECURE and works only
832 # when you trust all your users; on the other hand, the attack vectors are
833 # mostly just DoS or fully-traceable tinkering.
834 our $permission_control = 'Group';
836 # Path to alternate screen multiuser acl file (see screen/README, undef for none)
837 our $screen_acl_file = undef;
839 # Reserved project name and user name suffixes.
841 # Note that with personal mob branches enabled, a user name can end up being a
842 # file name after having a 'mob.' prefix added or a directory name after having
843 # a 'mob_' prefix added. If there is ANY possibility that a file with a
844 # .suffix name may need to be served by the web server, lc(suffix) SHOULD be in
845 # this hash! Pre-existing project names or user names with a suffix in this
846 # table can continue to be used, but no new projects or users can be created
847 # that have a suffix (case-insensitive) listed here.
848 our %reserved_suffixes = (
849 # Entries must be lowercase WITHOUT a leading '.'
850 bmp => 1,
851 bz2 => 1,
852 cer => 1,
853 cgi => 1,
854 crt => 1,
855 css => 1,
856 dmg => 1,
857 fcgi => 1,
858 gif => 1,
859 gz => 1,
860 htm => 1,
861 html => 1,
862 ico => 1,
863 jp2 => 1,
864 jpeg => 1,
865 jpg => 1,
866 jpg2 => 1,
867 js => 1,
868 mp3 => 1,
869 mp4 => 1,
870 pdf => 1,
871 pem => 1,
872 php => 1,
873 png => 1,
874 sig => 1,
875 shtml => 1,
876 svg => 1,
877 svgz => 1,
878 tar => 1,
879 text => 1,
880 tgz => 1,
881 tif => 1,
882 tiff => 1,
883 txt => 1,
884 xbm => 1,
885 xht => 1,
886 xhtml => 1,
887 xz => 1,
888 zip => 1,
893 ## -------------------
894 ## Size limit settings
895 ## -------------------
898 # If this is set to a non-zero value, whenever a receive-pack, mirror fetch
899 # or clone runs, git will be run with a UL_SETFSIZE value set to this value.
901 # The limit is not active while performing garbage collection or other
902 # maintenance tasks.
904 # If git attempts to create a file larger than this limit, it will receive a
905 # SIGXFSZ signal which will cause git to terminate.
907 # Note that if the actual value of UL_GETFSIZE at runtime is already less than
908 # the value set here, then that value will be silently used instead.
910 # The value represents the maximum file size allowed in units of 512-byte blocks
911 # and must be <= 2147483647 (which represents a size of 1 TiB less 512 bytes).
913 our $max_file_size512 = undef; # default is no limit
915 # If this is set to a non-zero value, after an otherwise successful clone,
916 # if the repository contains more than this many objects, the clone will
917 # be considered to fail.
919 # This setting only takes effect after an otherwise successful clone which
920 # means that if $max_file_size512 is non-zero that the resulting clone did
921 # not exceed the file size limit if it fails this check.
923 our $max_clone_objects = undef; # default is no limit
927 ## -------------------------
928 ## sendmail.pl configuration
929 ## -------------------------
932 # Full information on available sendmail.pl settings can be found by running
933 # ../bin/sendmail.pl -v -h
935 # These settings will only be used if $sendmail_bin is set to 'sendmail.pl'
937 # sendmail.pl host name
938 #$ENV{'SENDMAIL_PL_HOST'} = 'localhost'; # localhost is the default
940 # sendmail.pl port name
941 #$ENV{'SENDMAIL_PL_PORT'} = '25'; # port 25 is the default
943 # sendmail.pl nc executable
944 #$ENV{'SENDMAIL_PL_NCBIN'} = "$chroot/bin/nc.openbsd"; # default is nc found in $PATH
946 # sendmail.pl nc options
947 # multiple options may be included, e.g. '-4 -X connect -x 192.168.100.10:8080'
948 #$ENV{'SENDMAIL_PL_NCOPT'} = '-4'; # force IPv4, default is to allow IPv4 & IPv6
952 ## -------------------------
953 ## Obscure Tuneable Features
954 ## -------------------------
957 # Throttle classes configured here override the defaults for them that
958 # are located in taskd/taskd.pl. See comments in that file for more info.
959 our @throttle_classes = ();
961 # Any tag names listed here will be allowed even if they would otherwise not be.
962 # Note that @allowed_tags takes precedence over @blocked_tags.
963 our @allowed_tags = (qw( ));
965 # Any tag names listed here will be disallowed in addition to the standard
966 # list of nonsense words etc. that are blocked as tags.
967 our @blocked_tags = (qw( ));
969 # Case folding tags
970 # If this setting is true, then tags that differ only in case will always use
971 # the same-cased version. If this setting is enabled and the tag is present in
972 # @allowed_tags (or the embedded white list in Util.pm) then the case of the
973 # tag will match the white list entry otherwise it will be all lowercased.
974 # If this setting is disabled (false) tags are used with their case left as-is.
975 # RECOMMENDED VALUE: 1 (true)
976 our $foldtags = 1;
978 # If there are no more than this many objects, then all deltas will be
979 # recomputed when gc takes place. Note that this does not affect any
980 # fast-import created packs as they ALWAYS have their deltas recomputed.
981 # Also when combining small packs, if the total object count in the packs
982 # to be combined is no more than this then the new, combined pack will have
983 # its deltas recomputed during the combine operation.
984 # Leave undef to use the default (which should generally be fine).
985 # Lowering this from the default can increase disk use.
986 # Values less than 1000 * number of CPU cores will be silently ignored.
987 # The "girocco.redelta" config item can be used to modify this behavior on
988 # a per-repository basis. See the description of it in gc.sh.
989 our $new_delta_threshold = undef;
991 # This setting is irrelevant unless foreign vcs mirrors that use git fast-import
992 # are enabled (e.g. $mirror_darcs, $mirror_bzr or $mirror_hg -- $mirror_svn does
993 # NOT use git fast-import and is not affected by this setting).
994 # The packs generated by git fast-import are very poor quality. For this reason
995 # they ALWAYS have their deltas recomputed at some point. Normally this is
996 # delayed until the next full (or mini) gc takes place. For this reason a full
997 # gc is always scheduled immediately after a fresh mirror clone completes.
998 # However, in the case of normal mirror updates, several git fast-import created
999 # packs may exist as a result of changes fetched during the normal mirror update
1000 # process. These packs will persist (with their git fast-import poor quality)
1001 # until the next full (or mini) gc triggers. The bad deltas in these update
1002 # packs could be sent down to clients who fetch updates before the next gc
1003 # triggers. To reduce (i.e. practically eliminate) the likelihood of this
1004 # occurring, this setting can be changed to a false (0 or undef) value in which
1005 # case after each mirror update of a git fast-import mirror, any newly created
1006 # git fast-import packs (as a result of the mirror update running) will have
1007 # their deltas recomputed shortly thereafter instead of waiting for the next gc.
1008 # Recomputing deltas immediately (almost immediately) will result in an extra
1009 # redeltification step (with associated CPU cost) that would otherwise not
1010 # occur and, in some cases (mainly large repositories), could ultimately result
1011 # in slightly less efficient deltas being retained.
1012 # RECOMMENDED VALUE: 1
1013 our $delay_gfi_redelta = 1;
1015 # If this is set to a true value, then core.packedGitWindowSize will be set
1016 # to 1 MiB (the same as if Git was compiled with NO_MMAP set). If this is NOT
1017 # set, core.packedGitWindowSize will be set to 32 MiB (even on 64-bit) to avoid
1018 # memory blowout. If your Git was built with NO_MMAP set and will not work
1019 # without NO_MMAP set, you MUST set this to a true value!
1020 our $git_no_mmap = undef;
1022 # If set to a true value, the "X-Girocco: $gitweburl" header included in all
1023 # Girocco-generated emails will be suppressed.
1024 our $suppress_x_girocco = undef;
1026 # Number of days to keep reflogs around
1027 # May be set to a value between 1 and 30 (inclusive)
1028 # The default of one day should normally suffice unless there's a need to
1029 # support a "Where's the undo? WHERE IS THE UNDO?!!!" option ;)
1030 our $reflogs_lifetime = 1;
1032 # The pack.window size to use with git upload-pack
1033 # When Git is creating a pack to send down to a client, if it needs to send
1034 # down objects that are deltas against objects it is not sending and that it
1035 # does not know the client already has, it must undelta and recompute deltas
1036 # for those objects. This is the remote's "Compressing objects" phase the
1037 # client sees during a fetch or clone. If this value is unset, the normal
1038 # Git default of 10 will be used for the window size during these operations.
1039 # This value may be set to a number between 2 and 50 inclusive to change the
1040 # window size during upload pack operations. A window size of 2 provides the
1041 # fastest response at the expense of less efficient deltas for the objects
1042 # being recompressed (meaning more data to send to the client). A window
1043 # size of 5 typically reduces the compression time by almost half and is
1044 # usually nearly as fast as a window size of 2 while providing better deltas.
1045 # A window size of 50 will increase the time spent in the "Compressing objects"
1046 # phase by as much as 5 times but will produce deltas similar to those that
1047 # Girocco generates when it performs garbage collection.
1048 # RECOMMENDED VALUE: undef or 5
1049 our $upload_pack_window = undef;
1051 # If this is true then remote fetching of refs/stash and refs/tgstash will
1052 # be allowed. Git does not allow single-level ref names to be pushed so the
1053 # only way they could get in there is if a linked working tree (or, gasp, a
1054 # non-bare Girocco repository) created them or they arrived via a non-clean
1055 # mirror fetch. The client almost certainly does not want to see them.
1056 # Unless this config item is true they will also be left out of the bundle too.
1057 # Since both stash and tgstash are used with their ref logs and there's no way
1058 # for a remote to fetch ref logs, the "log --walk-reflogs" feature could not be
1059 # used with them by a remote that fetched them anyway.
1061 # NOTE: The reason this doesn't just control all single-level refs is that the
1062 # "hideRefs" configuration mechanism isn't flexible enough to hide all
1063 # single-level refs without knowing their names. In addition, it hides the
1064 # entire refs hierarchy so refs/stash/foo will also be hidden along with
1065 # refs/stash, but Git doesn't actually support ref names that introduce a
1066 # directory/file confict (aka D/F conflict) and "refs/stash" represents an
1067 # official Git ref name therefore any refs/stash/... names really aren't
1068 # allowed in the first place so it's no problem if they're incidentally hidden
1069 # along with refs/stash itself.
1071 # NOTE: Git 1.8.2 or later is required to actually hide the refs from fetchers
1072 # over the "git:" protocol and Git 2.3.5 or later is required to properly hide
1073 # them over the smart "http:" protocol (Girocco will not attempt to "hide" them
1074 # on a smart HTTP fetch if Git is < 2.3.5 to avoid Git bugs.) They will never
1075 # be hidden via the non-smart HTTP fetch or any other non-smart protocols that
1076 # also make use of the $gitdir/info/refs file as they are not excluded from it.
1077 # Nor will they be hidden when accessed via any non-Girocco mechanism.
1078 # They will, however, always be excluded from the primary (aka .bitmap) pack
1079 # and bundle no matter what version of Git is used unless this is set to a
1080 # true value. It's only the server's Git version that matters when hiding refs.
1082 # RECOMMENDED VALUE: undef or 0
1083 our $fetch_stash_refs = undef;
1085 # When set to a true value, Girocco will attempt to pick up ref changes made
1086 # outside of Girocco itself and process them using the usual Girocco
1087 # notification mechanism. Git lacks any "post-ref-change" hook capability that
1088 # could facilitate this. This feature is primarily intended to detect running
1089 # of "git fetch" in linked working trees of a Girocco repository. In many
1090 # cases after running a command Git runs "git gc --auto". With the correct
1091 # encouragement we can always induce Git to run our pre-auto-gc hook at that
1092 # time. "git fetch" invokes "git gc --auto" after the fetch. Girocco needs
1093 # to do additional maintenance to make this work properly so do not enable this
1094 # unless it's really needed. Additionally, there are a number of commands
1095 # (such as "git commit") that do not invoke "git gc --auto". Even with this
1096 # enabled, additional hooks for post-rewrite and post-checkout
1097 # would really be needed to catch more things and even then there are some
1098 # Git commands that would never be caught ("git filter-branch",
1099 # "git update-ref", "git reset", etc.) so this is hardly a complete solution.
1100 # But it WILL catch "git fetch" changes although the hashes it uses for the
1101 # "old" ref values may not be all that recent, the new ref values will be.
1102 # When this is false, the hack is completely disabled.
1103 # When this is true, the hack is enabled by default for all repositories,
1104 # but can be controlled on an individual repository basis by setting the
1105 # girocco.autogchack value explicitly to true (enable) or false (disable).
1106 # If this is set to the special value "mirror" then it will behave as true
1107 # for mirrors and false for non-mirrors thereby completely eliminating any
1108 # overhead for push projects but detecting external "git fetch"s for mirrors.
1109 # If this is enabled for a project, any third party script/tool can trigger
1110 # the Girocco ref notification mechanism simply by making a ref change and
1111 # then running "git gc --auto --quiet" on the project. In a capitulation to
1112 # use of linked working trees, Girocco installs a post-commit hook that will
1113 # trigger these notifications as well when this is enabled.
1114 our $autogchack = 0;
1116 # When set to a true value the initial setting for core.hooksPath will point
1117 # to the repository's own hooks directory instead of $reporoot/_global/hooks.
1118 # Due to the unfortunate implementation of core.hooksPath, Girocco must always
1119 # ensure the value gets set in each repository's config file. Normally it
1120 # just sets it to $reporoot/_global/hooks and that's that. However, the
1121 # update-all-config script will also tolerate it pointing at the repository's
1122 # own hooks directory -- Girocco maintains symbolic links in there to the
1123 # global hooks to make sure they get run when using older versions of Git;
1124 # therefore that setting is basically equivalent. The difference is that
1125 # repository-specific hooks can be added when hooksPath is pointing at the
1126 # repository's hooks directory but not when it's pointing at _global/hooks.
1127 # A repository's setting can be changed manually (and it will stick), but
1128 # sometimes it may be desirable to always just default to pointing at the
1129 # repository's own hooks directory from the start. Perhaps linked working
1130 # trees will be in use and software that needs to set repository-specific hooks
1131 # will be in use. If $autogchack has been set to true this may very likely be
1132 # the case.
1133 our $localhooks = 0;
1135 # If this is set to a true value changes to single-level refs (e.g. refs/stash)
1136 # will be passed through to the notification machinery.
1137 # Usually this is NOT wanted, especially when linked working trees are being
1138 # used with the repository.
1139 # However, in the unlikely event that changes to such ref names should NOT be
1140 # ignored, this value may be set to any true value.
1141 # RECOMMENDED VALUE: 0
1142 our $notify_single_level = 0;
1144 # If this is set to a non-empty value it will become the default value for
1145 # all repositories' girocco.notifyHook value.
1146 # Whenever taskd.pl receives a batch of ref changes for processing, it first
1147 # sends them off to any configured "girocco.notifyHook" (same semantics as
1148 # a post-receive hook except it also gets four command-line arguments like
1149 # so: cat ref-changes | notifyhook $projname $user $linecount $contextlinecount
1150 # There is no default notify hook, but each repository may set its own by
1151 # setting the `girocco.notifyHook` config value which will be eval'd by the
1152 # shell (like $GIT_EDITOR is) with the current directory set to the
1153 # repository's git-dir and the changes on standard input.
1154 # Note that normal notification processing does not take place until after
1155 # this command (if it's not null) gets run (regardless of its result code).
1156 our $default_notifyhook = undef;
1158 # UNIX group owning the repositories' htmlcache subdirectory
1159 # If not defined defaults to $owning_group
1160 # If gitweb access is provided but only on a read-only basis, then setting
1161 # this to a group to which Both $cgi_user and $mirror_user belong will still
1162 # allow summary page caching.
1163 # $mirror_user should always belong to this group
1164 our $htmlcache_owning_group = undef;
1166 # UNIX group owning the repositories' ctags subdirectory
1167 # If not defined defaults to $owning_group
1168 # If gitweb access is provided but only on a read-only basis, then setting
1169 # this to a group to which Both $cgi_user and $mirror_user belong will still
1170 # allow tags to be added to the repository in gitweb (provided that feature
1171 # is enabled in gitweb/gitweb_config.perl).
1172 # $mirror_user should always belong to this group
1173 our $ctags_owning_group = undef;
1175 # When using pack bitmaps and computing data to send to clients over a fetch,
1176 # having pack.writeBitmapHashCache set to true produces better deltas (thereby
1177 # potentially reducing the amount of data that needs to be sent). However, old
1178 # JGit does not understand this extra data, so if JGit needs to use the bitmaps
1179 # generated when Girocco runs Git, this setting needs to be set to a true value
1180 # so that the hash cache is excluded when Git generates the bitmaps thereby
1181 # making them compatible with JGit prior to JGit v3.5.0 released in late 2014.
1182 # Note that changes to this setting will not take effect until the next time
1183 # gc is scheduled to run on a project and then only if gc actually takes place.
1184 # Use the $basedir/toolbox/make-all-gc-eligible.sh script to force all projects
1185 # to actually do a gc the next time they are scheduled for one.
1186 # (Note that Git version 2.22.0, released 2019-06-07, enabled the HashCache by
1187 # default since it post dates the JGit v3.5.0 release by approximately 5 years
1188 # [that corresponds to a setting of undef or 0 here].)
1189 # RECOMMENDED VALUE: undef or 0
1190 our $jgit_compatible_bitmaps = 0;
1192 # Set the default value of receive.maxInputSize
1193 # This is only effective for receives (aka an incoming push) and causes the
1194 # push to abort if the incoming pack (which is generally thin and does not
1195 # have any index) exceeds this many bytes in size (a 'k', 'm' or 'g' suffix
1196 # may be used on the value). If undef or set to 0 there is no limit. This
1197 # limit is only effective when Girocco is running Git v2.11.0 or later.
1198 our $max_receive_size = undef;
1200 # Suppress git: and ssh: log messages
1201 # Access via http: and/or https: provides logging of the project being
1202 # cloned/fetched/pushed to. There is normally no such logging for access
1203 # via ssh: and/or git: protocols. However, Girocco intercepts those
1204 # accesses to perform sanity and permision checks and also logs the request
1205 # to the system log at that time. By setting this value to any true
1206 # value, that logging of git: and ssh: git activity will be suppressed.
1207 # RECOMMENDED VALUE: 0
1208 our $suppress_git_ssh_logging = 0;
1210 # Select the sshd to be installed into the chroot
1211 # If set this MUST be an absolute path
1212 # Ignored unless a chroot is actually being created
1213 # Leaving this undef will find sshd in "standard" system locations and
1214 # is the recommended value. Only set this if you need to override the
1215 # "standard" sshd for some reason.
1216 # RECOMMENDED VALUE: undef
1217 our $sshd_bin = undef;
1219 # Allow any git-daemon host
1220 # If set to a true value, then the extra "host=" parameter received
1221 # by git-daemon (if present) will be ignored. If the $gitpullurl value
1222 # is undefined or does not start with "git://<hostname>" then any host
1223 # will be allowed by default.
1224 # RECOMMENDED VALUE: undef
1225 our $git_daemon_any_host = undef;
1227 # Restrict git-daemon host names
1228 # If $git_daemon_any_host is any false value (or undef) AND this
1229 # value is set to a space-separated list of host names WITHOUT any
1230 # port numbers, then the "host=" parameter MUST be provided by
1231 # a git daemon client AND it must match one of the names in this
1232 # all-lowercase, space-separated list. Note that IPv6 literal
1233 # addresses MUST NOT be enclosed in brackets. If this value is
1234 # empty or undef it will default to the hostname extracted from
1235 # $gitpullurl if that is set plus several variants of localhost.
1236 # Note, do NOT terminate DNS names with a final "." or they will
1237 # never match!
1238 # EXAMPLE:
1239 # our $git_daemon_host_list = "foo.example.com localhost ::1 127.0.0.1";
1240 our $git_daemon_host_list = undef;
1242 # Shared repository setting
1243 # This is the value to set the core.sharedRepository value to in
1244 # each repository. If this is changed, running update-all-config
1245 # will update each project to the new value.
1246 # By default (if this is left undef) it will be set to 'all' (which
1247 # corresponds to a core.sharedRepository value of '2').
1248 # This makes it so repositories are group-writable and world readable.
1249 # If set to the more restrictive 'group' (which corresponds to a
1250 # core.sharedRepository value of '1'), repositories will still typically
1251 # be world readable as umask 002 is used in most places. However, if
1252 # worktrees are in use and the user has a umask that excludes other
1253 # read permissions, repositories might become only partially world
1254 # readable. This only matters when they are being served by a user
1255 # (such as git-daemon running as 'nobody') that does not have group
1256 # or owner read permission to the repository.
1257 # See the `git help init` output for the possible values of the
1258 # `--shared` option for allowed settings of this value.
1259 # Note that if an explicit octal value is used, any execute bits will
1260 # be removed and u+rw will always be added and there are no promises
1261 # that files will not end up group readable/writable anyway.
1262 # RECOMMENDED VALUE: undef
1263 our $git_shared_repository_setting = undef;
1266 ## ------------------------
1267 ## Sanity checks & defaults
1268 ## ------------------------
1271 # A separate, non-installed module handles the checks and defaults
1272 require Girocco::Validator;