Autogenerated manpages for v2.46.0-46-g406f3
[git-manpages.git] / man5 / gitweb.conf.5
blob01abfd3ae9b7459703c4f8b43c95f8d1b7e149cc
1 '\" t
2 .\"     Title: gitweb.conf
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-08-01
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.0.46.g406f326d27
8 .\"  Language: English
9 .\"
10 .TH "GITWEB\&.CONF" "5" "2024-08-01" "Git 2\&.46\&.0\&.46\&.g406f326" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 gitweb.conf \- Gitweb (Git web interface) configuration file
32 .SH "SYNOPSIS"
33 .sp
34 /etc/gitweb\&.conf, /etc/gitweb\-common\&.conf, $GITWEBDIR/gitweb_config\&.perl
35 .SH "DESCRIPTION"
36 .sp
37 The gitweb CGI script for viewing Git repositories over the web uses a perl script fragment as its configuration file\&. You can set variables using "\fBour $variable = value\fR"; text from a "#" character until the end of a line is ignored\&. See \fBperlsyn\fR(1) for details\&.
38 .sp
39 An example:
40 .sp
41 .if n \{\
42 .RS 4
43 .\}
44 .nf
45 # gitweb configuration file for http://git\&.example\&.org
47 our $projectroot = "/srv/git"; # FHS recommendation
48 our $site_name = \*(AqExample\&.org >> Repos\*(Aq;
49 .fi
50 .if n \{\
51 .RE
52 .\}
53 .sp
54 The configuration file is used to override the default settings that were built into gitweb at the time the \fIgitweb\&.cgi\fR script was generated\&.
55 .sp
56 While one could just alter the configuration settings in the gitweb CGI itself, those changes would be lost upon upgrade\&. Configuration settings might also be placed into a file in the same directory as the CGI script with the default name \fIgitweb_config\&.perl\fR \(em allowing one to have multiple gitweb instances with different configurations by the use of symlinks\&.
57 .sp
58 Note that some configuration can be controlled on per\-repository rather than gitweb\-wide basis: see "Per\-repository gitweb configuration" subsection on \fBgitweb\fR(1) manpage\&.
59 .SH "DISCUSSION"
60 .sp
61 Gitweb reads configuration data from the following sources in the following order:
62 .sp
63 .RS 4
64 .ie n \{\
65 \h'-04'\(bu\h'+03'\c
66 .\}
67 .el \{\
68 .sp -1
69 .IP \(bu 2.3
70 .\}
71 built\-in values (some set during build stage),
72 .RE
73 .sp
74 .RS 4
75 .ie n \{\
76 \h'-04'\(bu\h'+03'\c
77 .\}
78 .el \{\
79 .sp -1
80 .IP \(bu 2.3
81 .\}
82 common system\-wide configuration file (defaults to
83 \fB/etc/gitweb\-common\&.conf\fR),
84 .RE
85 .sp
86 .RS 4
87 .ie n \{\
88 \h'-04'\(bu\h'+03'\c
89 .\}
90 .el \{\
91 .sp -1
92 .IP \(bu 2.3
93 .\}
94 either per\-instance configuration file (defaults to
95 \fIgitweb_config\&.perl\fR
96 in the same directory as the installed gitweb), or if it does not exist then fallback system\-wide configuration file (defaults to
97 \fB/etc/gitweb\&.conf\fR)\&.
98 .RE
99 .sp
100 Values obtained in later configuration files override values obtained earlier in the above sequence\&.
102 Locations of the common system\-wide configuration file, the fallback system\-wide configuration file and the per\-instance configuration file are defined at compile time using build\-time Makefile configuration variables, respectively \fBGITWEB_CONFIG_COMMON\fR, \fBGITWEB_CONFIG_SYSTEM\fR and \fBGITWEB_CONFIG\fR\&.
104 You can also override locations of gitweb configuration files during runtime by setting the following environment variables: \fBGITWEB_CONFIG_COMMON\fR, \fBGITWEB_CONFIG_SYSTEM\fR and \fBGITWEB_CONFIG\fR to a non\-empty value\&.
106 The syntax of the configuration files is that of Perl, since these files are handled by sourcing them as fragments of Perl code (the language that gitweb itself is written in)\&. Variables are typically set using the \fBour\fR qualifier (as in "\fBour $variable = <value>;\fR") to avoid syntax errors if a new version of gitweb no longer uses a variable and therefore stops declaring it\&.
108 You can include other configuration file using read_config_file() subroutine\&. For example, one might want to put gitweb configuration related to access control for viewing repositories via Gitolite (one of Git repository management tools) in a separate file, e\&.g\&. in \fB/etc/gitweb\-gitolite\&.conf\fR\&. To include it, put
110 .if n \{\
111 .RS 4
114 read_config_file("/etc/gitweb\-gitolite\&.conf");
116 .if n \{\
120 somewhere in gitweb configuration file used, e\&.g\&. in per\-installation gitweb configuration file\&. Note that read_config_file() checks itself that the file it reads exists, and does nothing if it is not found\&. It also handles errors in included file\&.
122 The default configuration with no configuration file at all may work perfectly well for some installations\&. Still, a configuration file is useful for customizing or tweaking the behavior of gitweb in many ways, and some optional features will not be present unless explicitly enabled using the configurable \fB%features\fR variable (see also "Configuring gitweb features" section below)\&.
123 .SH "CONFIGURATION VARIABLES"
125 Some configuration variables have their default values (embedded in the CGI script) set during building gitweb \(em if that is the case, this fact is put in their description\&. See gitweb\(cqs \fIINSTALL\fR file for instructions on building and installing gitweb\&.
126 .SS "Location of repositories"
128 The configuration variables described below control how gitweb finds Git repositories, and how repositories are displayed and accessed\&.
130 See also "Repositories" and later subsections in \fBgitweb\fR(1) manpage\&.
132 $projectroot
133 .RS 4
134 Absolute filesystem path which will be prepended to project path; the path to repository is
135 \fB$projectroot/$project\fR\&. Set to
136 \fB$GITWEB_PROJECTROOT\fR
137 during installation\&. This variable has to be set correctly for gitweb to find repositories\&.
139 For example, if
140 \fB$projectroot\fR
141 is set to "/srv/git" by putting the following in gitweb config file:
143 .if n \{\
144 .RS 4
147 our $projectroot = "/srv/git";
149 .if n \{\
153 then
155 .if n \{\
156 .RS 4
159 http://git\&.example\&.com/gitweb\&.cgi?p=foo/bar\&.git
161 .if n \{\
165 and its path_info based equivalent
167 .if n \{\
168 .RS 4
171 http://git\&.example\&.com/gitweb\&.cgi/foo/bar\&.git
173 .if n \{\
177 will map to the path
178 \fB/srv/git/foo/bar\&.git\fR
179 on the filesystem\&.
182 $projects_list
183 .RS 4
184 Name of a plain text file listing projects, or a name of directory to be scanned for projects\&.
186 Project list files should list one project per line, with each line having the following format
188 .if n \{\
189 .RS 4
192 <URI\-encoded filesystem path to repository> SP <URI\-encoded repository owner>
194 .if n \{\
198 The default value of this variable is determined by the
199 \fBGITWEB_LIST\fR
200 makefile variable at installation time\&. If this variable is empty, gitweb will fall back to scanning the
201 \fB$projectroot\fR
202 directory for repositories\&.
205 $project_maxdepth
206 .RS 4
208 \fB$projects_list\fR
209 variable is unset, gitweb will recursively scan filesystem for Git repositories\&. The
210 \fB$project_maxdepth\fR
211 is used to limit traversing depth, relative to
212 \fB$projectroot\fR
213 (starting point); it means that directories which are further from
214 \fB$projectroot\fR
215 than
216 \fB$project_maxdepth\fR
217 will be skipped\&.
219 It is purely performance optimization, originally intended for MacOS X, where recursive directory traversal is slow\&. Gitweb follows symbolic links, but it detects cycles, ignoring any duplicate files and directories\&.
221 The default value of this variable is determined by the build\-time configuration variable
222 \fBGITWEB_PROJECT_MAXDEPTH\fR, which defaults to 2007\&.
225 $export_ok
226 .RS 4
227 Show repository only if this file exists (in repository)\&. Only effective if this variable evaluates to true\&. Can be set when building gitweb by setting
228 \fBGITWEB_EXPORT_OK\fR\&. This path is relative to
229 \fBGIT_DIR\fR\&. git\-daemon[1] uses
230 \fIgit\-daemon\-export\-ok\fR, unless started with
231 \fB\-\-export\-all\fR\&. By default this variable is not set, which means that this feature is turned off\&.
234 $export_auth_hook
235 .RS 4
236 Function used to determine which repositories should be shown\&. This subroutine should take one parameter, the full path to a project, and if it returns true, that project will be included in the projects list and can be accessed through gitweb as long as it fulfills the other requirements described by $export_ok, $projects_list, and $projects_maxdepth\&. Example:
238 .if n \{\
239 .RS 4
242 our $export_auth_hook = sub { return \-e "$_[0]/git\-daemon\-export\-ok"; };
244 .if n \{\
248 though the above might be done by using
249 \fB$export_ok\fR
250 instead
252 .if n \{\
253 .RS 4
256 our $export_ok = "git\-daemon\-export\-ok";
258 .if n \{\
262 If not set (default), it means that this feature is disabled\&.
264 See also more involved example in "Controlling access to Git repositories" subsection on
265 \fBgitweb\fR(1)
266 manpage\&.
269 $strict_export
270 .RS 4
271 Only allow viewing of repositories also shown on the overview page\&. This for example makes
272 \fB$export_ok\fR
273 file decide if repository is available and not only if it is shown\&. If
274 \fB$projects_list\fR
275 points to file with list of project, only those repositories listed would be available for gitweb\&. Can be set during building gitweb via
276 \fBGITWEB_STRICT_EXPORT\fR\&. By default this variable is not set, which means that you can directly access those repositories that are hidden from projects list page (e\&.g\&. the are not listed in the $projects_list file)\&.
278 .SS "Finding files"
280 The following configuration variables tell gitweb where to find files\&. The values of these variables are paths on the filesystem\&.
282 $GIT
283 .RS 4
284 Core git executable to use\&. By default set to
285 \fB$GIT_BINDIR/git\fR, which in turn is by default set to
286 \fB$(bindir)/git\fR\&. If you use Git installed from a binary package, you should usually set this to "/usr/bin/git"\&. This can just be "git" if your web server has a sensible PATH; from security point of view it is better to use absolute path to git binary\&. If you have multiple Git versions installed it can be used to choose which one to use\&. Must be (correctly) set for gitweb to be able to work\&.
289 $mimetypes_file
290 .RS 4
291 File to use for (filename extension based) guessing of MIME types before trying
292 \fB/etc/mime\&.types\fR\&.
293 \fBNOTE\fR
294 that this path, if relative, is taken as relative to the current Git repository, not to CGI script\&. If unset, only
295 \fB/etc/mime\&.types\fR
296 is used (if present on filesystem)\&. If no mimetypes file is found, mimetype guessing based on extension of file is disabled\&. Unset by default\&.
299 $highlight_bin
300 .RS 4
301 Path to the highlight executable to use (it must be the one from
302 \m[blue]\fBhttp://andre\-simon\&.de/zip/download\&.php\fR\m[]
303 due to assumptions about parameters and output)\&. By default set to
304 \fIhighlight\fR; set it to full path to highlight executable if it is not installed on your web server\(cqs PATH\&. Note that
305 \fIhighlight\fR
306 feature must be set for gitweb to actually use syntax highlighting\&.
308 \fBNOTE\fR: for a file to be highlighted, its syntax type must be detected and that syntax must be supported by "highlight"\&. The default syntax detection is minimal, and there are many supported syntax types with no detection by default\&. There are three options for adding syntax detection\&. The first and second priority are
309 \fB%highlight_basename\fR
311 \fB%highlight_ext\fR, which detect based on basename (the full filename, for example "Makefile") and extension (for example "sh")\&. The keys of these hashes are the basename and extension, respectively, and the value for a given key is the name of the syntax to be passed via
312 \fB\-\-syntax <syntax>\fR
313 to "highlight"\&. The last priority is the "highlight" configuration of
314 \fBShebang\fR
315 regular expressions to detect the language based on the first line in the file, (for example, matching the line "#!/bin/bash")\&. See the highlight documentation and the default config at /etc/highlight/filetypes\&.conf for more details\&.
317 For example if repositories you are hosting use "phtml" extension for PHP files, and you want to have correct syntax\-highlighting for those files, you can add the following to gitweb configuration:
319 .if n \{\
320 .RS 4
323 our %highlight_ext;
324 $highlight_ext{\*(Aqphtml\*(Aq} = \*(Aqphp\*(Aq;
326 .if n \{\
330 .SS "Links and their targets"
332 The configuration variables described below configure some of gitweb links: their target and their look (text or image), and where to find page prerequisites (stylesheet, favicon, images, scripts)\&. Usually they are left at their default values, with the possible exception of \fB@stylesheets\fR variable\&.
334 @stylesheets
335 .RS 4
336 List of URIs of stylesheets (relative to the base URI of a page)\&. You might specify more than one stylesheet, for example to use "gitweb\&.css" as base with site specific modifications in a separate stylesheet to make it easier to upgrade gitweb\&. For example, you can add a
337 \fBsite\fR
338 stylesheet by putting
340 .if n \{\
341 .RS 4
344 push @stylesheets, "gitweb\-site\&.css";
346 .if n \{\
350 in the gitweb config file\&. Those values that are relative paths are relative to base URI of gitweb\&.
352 This list should contain the URI of gitweb\(cqs standard stylesheet\&. The default URI of gitweb stylesheet can be set at build time using the
353 \fBGITWEB_CSS\fR
354 makefile variable\&. Its default value is
355 \fBstatic/gitweb\&.css\fR
357 \fBstatic/gitweb\&.min\&.css\fR
358 if the
359 \fBCSSMIN\fR
360 variable is defined, i\&.e\&. if CSS minifier is used during build)\&.
362 \fBNote\fR: there is also a legacy
363 \fB$stylesheet\fR
364 configuration variable, which was used by older gitweb\&. If
365 \fB$stylesheet\fR
366 variable is defined, only CSS stylesheet given by this variable is used by gitweb\&.
369 $logo
370 .RS 4
371 Points to the location where you put
372 \fIgit\-logo\&.png\fR
373 on your web server, or to be more the generic URI of logo, 72x27 size)\&. This image is displayed in the top right corner of each gitweb page and used as a logo for the Atom feed\&. Relative to the base URI of gitweb (as a path)\&. Can be adjusted when building gitweb using
374 \fBGITWEB_LOGO\fR
375 variable By default set to
376 \fBstatic/git\-logo\&.png\fR\&.
379 $favicon
380 .RS 4
381 Points to the location where you put
382 \fIgit\-favicon\&.png\fR
383 on your web server, or to be more the generic URI of favicon, which will be served as "image/png" type\&. Web browsers that support favicons (website icons) may display them in the browser\(cqs URL bar and next to the site name in bookmarks\&. Relative to the base URI of gitweb\&. Can be adjusted at build time using
384 \fBGITWEB_FAVICON\fR
385 variable\&. By default set to
386 \fBstatic/git\-favicon\&.png\fR\&.
389 $javascript
390 .RS 4
391 Points to the location where you put
392 \fIgitweb\&.js\fR
393 on your web server, or to be more generic the URI of JavaScript code used by gitweb\&. Relative to the base URI of gitweb\&. Can be set at build time using the
394 \fBGITWEB_JS\fR
395 build\-time configuration variable\&.
397 The default value is either
398 \fBstatic/gitweb\&.js\fR, or
399 \fBstatic/gitweb\&.min\&.js\fR
400 if the
401 \fBJSMIN\fR
402 build variable was defined, i\&.e\&. if JavaScript minifier was used at build time\&.
403 \fBNote\fR
404 that this single file is generated from multiple individual JavaScript "modules"\&.
407 $home_link
408 .RS 4
409 Target of the home link on the top of all pages (the first part of view "breadcrumbs")\&. By default it is set to the absolute URI of a current page (to the value of
410 \fB$my_uri\fR
411 variable, or to "/" if
412 \fB$my_uri\fR
413 is undefined or is an empty string)\&.
416 $home_link_str
417 .RS 4
418 Label for the "home link" at the top of all pages, leading to
419 \fB$home_link\fR
420 (usually the main gitweb page, which contains the projects list)\&. It is used as the first component of gitweb\(cqs "breadcrumb trail":
421 \fB<home\-link> / <project> / <action>\fR\&. Can be set at build time using the
422 \fBGITWEB_HOME_LINK_STR\fR
423 variable\&. By default it is set to "projects", as this link leads to the list of projects\&. Another popular choice is to set it to the name of site\&. Note that it is treated as raw HTML so it should not be set from untrusted sources\&.
426 @extra_breadcrumbs
427 .RS 4
428 Additional links to be added to the start of the breadcrumb trail before the home link, to pages that are logically "above" the gitweb projects list, such as the organization and department which host the gitweb server\&. Each element of the list is a reference to an array, in which element 0 is the link text (equivalent to
429 \fB$home_link_str\fR) and element 1 is the target URL (equivalent to
430 \fB$home_link\fR)\&.
432 For example, the following setting produces a breadcrumb trail like "home / dev / projects / \&...\:" where "projects" is the home link\&.
434 .if n \{\
435 .RS 4
438     our @extra_breadcrumbs = (
439       [ \*(Aqhome\*(Aq => \*(Aqhttps://www\&.example\&.org/\*(Aq ],
440       [ \*(Aqdev\*(Aq  => \*(Aqhttps://dev\&.example\&.org/\*(Aq ],
441     );
443 .if n \{\
448 $logo_url, $logo_label
449 .RS 4
450 URI and label (title) for the Git logo link (or your site logo, if you chose to use different logo image)\&. By default, these both refer to Git homepage,
451 \m[blue]\fBhttps://git\-scm\&.com\fR\m[]; in the past, they pointed to Git documentation at
452 \m[blue]\fBhttps://www\&.kernel\&.org\fR\m[]\&.
454 .SS "Changing gitweb\(cqs look"
456 You can adjust how pages generated by gitweb look using the variables described below\&. You can change the site name, add common headers and footers for all pages, and add a description of this gitweb installation on its main page (which is the projects list page), etc\&.
458 $site_name
459 .RS 4
460 Name of your site or organization, to appear in page titles\&. Set it to something descriptive for clearer bookmarks etc\&. If this variable is not set or is, then gitweb uses the value of the
461 \fBSERVER_NAME\fR
462 \fBCGI\fR
463 environment variable, setting site name to "$SERVER_NAME Git", or "Untitled Git" if this variable is not set (e\&.g\&. if running gitweb as standalone script)\&.
465 Can be set using the
466 \fBGITWEB_SITENAME\fR
467 at build time\&. Unset by default\&.
470 $site_html_head_string
471 .RS 4
472 HTML snippet to be included in the <head> section of each page\&. Can be set using
473 \fBGITWEB_SITE_HTML_HEAD_STRING\fR
474 at build time\&. No default value\&.
477 $site_header
478 .RS 4
479 Name of a file with HTML to be included at the top of each page\&. Relative to the directory containing the
480 \fIgitweb\&.cgi\fR
481 script\&. Can be set using
482 \fBGITWEB_SITE_HEADER\fR
483 at build time\&. No default value\&.
486 $site_footer
487 .RS 4
488 Name of a file with HTML to be included at the bottom of each page\&. Relative to the directory containing the
489 \fIgitweb\&.cgi\fR
490 script\&. Can be set using
491 \fBGITWEB_SITE_FOOTER\fR
492 at build time\&. No default value\&.
495 $home_text
496 .RS 4
497 Name of a HTML file which, if it exists, is included on the gitweb projects overview page ("projects_list" view)\&. Relative to the directory containing the gitweb\&.cgi script\&. Default value can be adjusted during build time using
498 \fBGITWEB_HOMETEXT\fR
499 variable\&. By default set to
500 \fIindextext\&.html\fR\&.
503 $projects_list_description_width
504 .RS 4
505 The width (in characters) of the "Description" column of the projects list\&. Longer descriptions will be truncated (trying to cut at word boundary); the full description is available in the
506 \fItitle\fR
507 attribute (usually shown on mouseover)\&. The default is 25, which might be too small if you use long project descriptions\&.
510 $default_projects_order
511 .RS 4
512 Default value of ordering of projects on projects list page, which means the ordering used if you don\(cqt explicitly sort projects list (if there is no "o" CGI query parameter in the URL)\&. Valid values are "none" (unsorted), "project" (projects are by project name, i\&.e\&. path to repository relative to
513 \fB$projectroot\fR), "descr" (project description), "owner", and "age" (by date of most current commit)\&.
515 Default value is "project"\&. Unknown value means unsorted\&.
517 .SS "Changing gitweb\(cqs behavior"
519 These configuration variables control \fIinternal\fR gitweb behavior\&.
521 $default_blob_plain_mimetype
522 .RS 4
523 Default mimetype for the blob_plain (raw) view, if mimetype checking doesn\(cqt result in some other type; by default "text/plain"\&. Gitweb guesses mimetype of a file to display based on extension of its filename, using
524 \fB$mimetypes_file\fR
525 (if set and file exists) and
526 \fB/etc/mime\&.types\fR
527 files (see
528 \fBmime\&.types\fR(5) manpage; only filename extension rules are supported by gitweb)\&.
531 $default_text_plain_charset
532 .RS 4
533 Default charset for text files\&. If this is not set, the web server configuration will be used\&. Unset by default\&.
536 $fallback_encoding
537 .RS 4
538 Gitweb assumes this charset when a line contains non\-UTF\-8 characters\&. The fallback decoding is used without error checking, so it can be even "utf\-8"\&. The value must be a valid encoding; see the
539 \fBEncoding::Supported\fR(3pm) man page for a list\&. The default is "latin1", aka\&. "iso\-8859\-1"\&.
542 @diff_opts
543 .RS 4
544 Rename detection options for git\-diff and git\-diff\-tree\&. The default is (\*(Aq\-M\*(Aq); set it to (\*(Aq\-C\*(Aq) or (\*(Aq\-C\*(Aq, \*(Aq\-C\*(Aq) to also detect copies, or set it to () i\&.e\&. empty list if you don\(cqt want to have renames detection\&.
546 \fBNote\fR
547 that rename and especially copy detection can be quite CPU\-intensive\&. Note also that non Git tools can have problems with patches generated with options mentioned above, especially when they involve file copies (\*(Aq\-C\*(Aq) or criss\-cross renames (\*(Aq\-B\*(Aq)\&.
549 .SS "Some optional features and policies"
551 Most of features are configured via \fB%feature\fR hash; however some of extra gitweb features can be turned on and configured using variables described below\&. This list beside configuration variables that control how gitweb looks does contain variables configuring administrative side of gitweb (e\&.g\&. cross\-site scripting prevention; admittedly this as side effect affects how "summary" pages look like, or load limiting)\&.
553 @git_base_url_list
554 .RS 4
555 List of Git base URLs\&. These URLs are used to generate URLs describing from where to fetch a project, which are shown on project summary page\&. The full fetch URL is "\fB$git_base_url/$project\fR", for each element of this list\&. You can set up multiple base URLs (for example one for
556 \fBgit://\fR
557 protocol, and one for
558 \fBhttp://\fR
559 protocol)\&.
561 Note that per repository configuration can be set in
562 \fB$GIT_DIR/cloneurl\fR
563 file, or as values of multi\-value
564 \fBgitweb\&.url\fR
565 configuration variable in project config\&. Per\-repository configuration takes precedence over value composed from
566 \fB@git_base_url_list\fR
567 elements and project name\&.
569 You can setup one single value (single entry/item in this list) at build time by setting the
570 \fBGITWEB_BASE_URL\fR
571 build\-time configuration variable\&. By default it is set to (), i\&.e\&. an empty list\&. This means that gitweb would not try to create project URL (to fetch) from project name\&.
574 $projects_list_group_categories
575 .RS 4
576 Whether to enable the grouping of projects by category on the project list page\&. The category of a project is determined by the
577 \fB$GIT_DIR/category\fR
578 file or the
579 \fBgitweb\&.category\fR
580 variable in each repository\(cqs configuration\&. Disabled by default (set to 0)\&.
583 $project_list_default_category
584 .RS 4
585 Default category for projects for which none is specified\&. If this is set to the empty string, such projects will remain uncategorized and listed at the top, above categorized projects\&. Used only if project categories are enabled, which means if
586 \fB$projects_list_group_categories\fR
587 is true\&. By default set to "" (empty string)\&.
590 $prevent_xss
591 .RS 4
592 If true, some gitweb features are disabled to prevent content in repositories from launching cross\-site scripting (XSS) attacks\&. Set this to true if you don\(cqt trust the content of your repositories\&. False by default (set to 0)\&.
595 $maxload
596 .RS 4
597 Used to set the maximum load that we will still respond to gitweb queries\&. If the server load exceeds this value then gitweb will return "503 Service Unavailable" error\&. The server load is taken to be 0 if gitweb cannot determine its value\&. Currently it works only on Linux, where it uses
598 \fB/proc/loadavg\fR; the load there is the number of active tasks on the system \(em processes that are actually running \(em averaged over the last minute\&.
601 \fB$maxload\fR
602 to undefined value (\fBundef\fR) to turn this feature off\&. The default value is 300\&.
605 $omit_age_column
606 .RS 4
607 If true, omit the column with date of the most current commit on the projects list page\&. It can save a bit of I/O and a fork per repository\&.
610 $omit_owner
611 .RS 4
612 If true prevents displaying information about repository owner\&.
615 $per_request_config
616 .RS 4
617 If this is set to code reference, it will be run once for each request\&. You can set parts of configuration that change per session this way\&. For example, one might use the following code in a gitweb configuration file
619 .if n \{\
620 .RS 4
623 our $per_request_config = sub {
624         $ENV{GL_USER} = $cgi\->remote_user || "gitweb";
627 .if n \{\
632 \fB$per_request_config\fR
633 is not a code reference, it is interpreted as boolean value\&. If it is true gitweb will process config files once per request, and if it is false gitweb will process config files only once, each time it is executed\&. True by default (set to 1)\&.
635 \fBNOTE\fR:
636 \fB$my_url\fR,
637 \fB$my_uri\fR, and
638 \fB$base_url\fR
639 are overwritten with their default values before every request, so if you want to change them, be sure to set this variable to true or a code reference effecting the desired changes\&.
641 This variable matters only when using persistent web environments that serve multiple requests using single gitweb instance, like mod_perl, FastCGI or Plackup\&.
643 .SS "Other variables"
645 Usually you should not need to change (adjust) any of configuration variables described below; they should be automatically set by gitweb to correct value\&.
647 $version
648 .RS 4
649 Gitweb version, set automatically when creating gitweb\&.cgi from gitweb\&.perl\&. You might want to modify it if you are running modified gitweb, for example
651 .if n \{\
652 .RS 4
655 our $version \&.= " with caching";
657 .if n \{\
661 if you run modified version of gitweb with caching support\&. This variable is purely informational, used e\&.g\&. in the "generator" meta header in HTML header\&.
664 $my_url, $my_uri
665 .RS 4
666 Full URL and absolute URL of the gitweb script; in earlier versions of gitweb you might have need to set those variables, but now there should be no need to do it\&. See
667 \fB$per_request_config\fR
668 if you need to set them still\&.
671 $base_url
672 .RS 4
673 Base URL for relative URLs in pages generated by gitweb, (e\&.g\&.
674 \fB$logo\fR,
675 \fB$favicon\fR,
676 \fB@stylesheets\fR
677 if they are relative URLs), needed and used
678 \fI<base href="$base_url">\fR
679 only for URLs with nonempty PATH_INFO\&. Usually gitweb sets its value correctly, and there is no need to set this variable, e\&.g\&. to $my_uri or "/"\&. See
680 \fB$per_request_config\fR
681 if you need to override it anyway\&.
683 .SH "CONFIGURING GITWEB FEATURES"
685 Many gitweb features can be enabled (or disabled) and configured using the \fB%feature\fR hash\&. Names of gitweb features are keys of this hash\&.
687 Each \fB%feature\fR hash element is a hash reference and has the following structure:
689 .if n \{\
690 .RS 4
693 "<feature\-name>" => {
694         "sub" => <feature\-sub\-(subroutine)>,
695         "override" => <allow\-override\-(boolean)>,
696         "default" => [ <options>\&.\&.\&. ]
699 .if n \{\
703 Some features cannot be overridden per project\&. For those features the structure of appropriate \fB%feature\fR hash element has a simpler form:
705 .if n \{\
706 .RS 4
709 "<feature\-name>" => {
710         "override" => 0,
711         "default" => [ <options>\&.\&.\&. ]
714 .if n \{\
718 As one can see it lacks the \*(Aqsub\*(Aq element\&.
720 The meaning of each part of feature configuration is described below:
722 default
723 .RS 4
724 List (array reference) of feature parameters (if there are any), used also to toggle (enable or disable) given feature\&.
726 Note that it is currently
727 \fBalways\fR
728 an array reference, even if feature doesn\(cqt accept any configuration parameters, and \*(Aqdefault\*(Aq is used only to turn it on or off\&. In such case you turn feature on by setting this element to
729 \fB[1]\fR, and torn it off by setting it to
730 \fB[0]\fR\&. See also the passage about the "blame" feature in the "Examples" section\&.
732 To disable features that accept parameters (are configurable), you need to set this element to empty list i\&.e\&.
733 \fB[]\fR\&.
736 override
737 .RS 4
738 If this field has a true value then the given feature is overridable, which means that it can be configured (or enabled/disabled) on a per\-repository basis\&.
740 Usually given "<feature>" is configurable via the
741 \fBgitweb\&.<feature>\fR
742 config variable in the per\-repository Git configuration file\&.
744 \fBNote\fR
745 that no feature is overridable by default\&.
749 .RS 4
750 Internal detail of implementation\&. What is important is that if this field is not present then per\-repository override for given feature is not supported\&.
752 You wouldn\(cqt need to ever change it in gitweb config file\&.
754 .SS "Features in \fB%feature\fR"
756 The gitweb features that are configurable via \fB%feature\fR hash are listed below\&. This should be a complete list, but ultimately the authoritative and complete list is in gitweb\&.cgi source code, with features described in the comments\&.
758 blame
759 .RS 4
760 Enable the "blame" and "blame_incremental" blob views, showing for each line the last commit that modified it; see
761 \fBgit-blame\fR(1)\&. This can be very CPU\-intensive and is therefore disabled by default\&.
763 This feature can be configured on a per\-repository basis via repository\(cqs
764 \fBgitweb\&.blame\fR
765 configuration variable (boolean)\&.
768 snapshot
769 .RS 4
770 Enable and configure the "snapshot" action, which allows user to download a compressed archive of any tree or commit, as produced by
771 \fBgit-archive\fR(1)
772 and possibly additionally compressed\&. This can potentially generate high traffic if you have large project\&.
774 The value of \*(Aqdefault\*(Aq is a list of names of snapshot formats, defined in
775 \fB%known_snapshot_formats\fR
776 hash, that you wish to offer\&. Supported formats include "tgz", "tbz2", "txz" (gzip/bzip2/xz compressed tar archive) and "zip"; please consult gitweb sources for a definitive list\&. By default only "tgz" is offered\&.
778 This feature can be configured on a per\-repository basis via repository\(cqs
779 \fBgitweb\&.snapshot\fR
780 configuration variable, which contains a comma separated list of formats or "none" to disable snapshots\&. Unknown values are ignored\&.
783 grep
784 .RS 4
785 Enable grep search, which lists the files in currently selected tree (directory) containing the given string; see
786 \fBgit-grep\fR(1)\&. This can be potentially CPU\-intensive, of course\&. Enabled by default\&.
788 This feature can be configured on a per\-repository basis via repository\(cqs
789 \fBgitweb\&.grep\fR
790 configuration variable (boolean)\&.
793 pickaxe
794 .RS 4
795 Enable the so called pickaxe search, which will list the commits that introduced or removed a given string in a file\&. This can be practical and quite faster alternative to "blame" action, but it is still potentially CPU\-intensive\&. Enabled by default\&.
797 The pickaxe search is described in
798 \fBgit-log\fR(1)
799 (the description of
800 \fB\-S<string>\fR
801 option, which refers to pickaxe entry in
802 \fBgitdiffcore\fR(7)
803 for more details)\&.
805 This feature can be configured on a per\-repository basis by setting repository\(cqs
806 \fBgitweb\&.pickaxe\fR
807 configuration variable (boolean)\&.
810 show\-sizes
811 .RS 4
812 Enable showing size of blobs (ordinary files) in a "tree" view, in a separate column, similar to what
813 \fBls \-l\fR
814 does; see description of
815 \fB\-l\fR
816 option in
817 \fBgit-ls-tree\fR(1)
818 manpage\&. This costs a bit of I/O\&. Enabled by default\&.
820 This feature can be configured on a per\-repository basis via repository\(cqs
821 \fBgitweb\&.showSizes\fR
822 configuration variable (boolean)\&.
825 patches
826 .RS 4
827 Enable and configure "patches" view, which displays list of commits in email (plain text) output format; see also
828 \fBgit-format-patch\fR(1)\&. The value is the maximum number of patches in a patchset generated in "patches" view\&. Set the
829 \fIdefault\fR
830 field to a list containing single item of or to an empty list to disable patch view, or to a list containing a single negative number to remove any limit\&. Default value is 16\&.
832 This feature can be configured on a per\-repository basis via repository\(cqs
833 \fBgitweb\&.patches\fR
834 configuration variable (integer)\&.
837 avatar
838 .RS 4
839 Avatar support\&. When this feature is enabled, views such as "shortlog" or "commit" will display an avatar associated with the email of each committer and author\&.
841 Currently available providers are
842 \fB"gravatar"\fR
844 \fB"picon"\fR\&. Only one provider at a time can be selected (\fIdefault\fR
845 is one element list)\&. If an unknown provider is specified, the feature is disabled\&.
846 \fBNote\fR
847 that some providers might require extra Perl packages to be installed; see
848 \fBgitweb/INSTALL\fR
849 for more details\&.
851 This feature can be configured on a per\-repository basis via repository\(cqs
852 \fBgitweb\&.avatar\fR
853 configuration variable\&.
855 See also
856 \fB%avatar_size\fR
857 with pixel sizes for icons and avatars ("default" is used for one\-line like "log" and "shortlog", "double" is used for two\-line like "commit", "commitdiff" or "tag")\&. If the default font sizes or lineheights are changed (e\&.g\&. via adding extra CSS stylesheet in
858 \fB@stylesheets\fR), it may be appropriate to change these values\&.
861 email\-privacy
862 .RS 4
863 Redact e\-mail addresses from the generated HTML, etc\&. content\&. This obscures e\-mail addresses retrieved from the author/committer and comment sections of the Git log\&. It is meant to hinder web crawlers that harvest and abuse addresses\&. Such crawlers may not respect robots\&.txt\&. Note that users and user tools also see the addresses as redacted\&. If Gitweb is not the final step in a workflow then subsequent steps may misbehave because of the redacted information they receive\&. Disabled by default\&.
866 highlight
867 .RS 4
868 Server\-side syntax highlight support in "blob" view\&. It requires
869 \fB$highlight_bin\fR
870 program to be available (see the description of this variable in the "Configuration variables" section above), and therefore is disabled by default\&.
872 This feature can be configured on a per\-repository basis via repository\(cqs
873 \fBgitweb\&.highlight\fR
874 configuration variable (boolean)\&.
877 remote_heads
878 .RS 4
879 Enable displaying remote heads (remote\-tracking branches) in the "heads" list\&. In most cases the list of remote\-tracking branches is an unnecessary internal private detail, and this feature is therefore disabled by default\&.
880 \fBgit-instaweb\fR(1), which is usually used to browse local repositories, enables and uses this feature\&.
882 This feature can be configured on a per\-repository basis via repository\(cqs
883 \fBgitweb\&.remote_heads\fR
884 configuration variable (boolean)\&.
887 The remaining features cannot be overridden on a per project basis\&.
889 search
890 .RS 4
891 Enable text search, which will list the commits which match author, committer or commit text to a given string; see the description of
892 \fB\-\-author\fR,
893 \fB\-\-committer\fR
895 \fB\-\-grep\fR
896 options in
897 \fBgit-log\fR(1)
898 manpage\&. Enabled by default\&.
900 Project specific override is not supported\&.
903 forks
904 .RS 4
905 If this feature is enabled, gitweb considers projects in subdirectories of project root (basename) to be forks of existing projects\&. For each project
906 \fB$projname\&.git\fR, projects in the
907 \fB$projname/\fR
908 directory and its subdirectories will not be shown in the main projects list\&. Instead, a \*(Aq+\*(Aq mark is shown next to
909 \fB$projname\fR, which links to a "forks" view that lists all the forks (all projects in
910 \fB$projname/\fR
911 subdirectory)\&. Additionally a "forks" view for a project is linked from project summary page\&.
913 If the project list is taken from a file (\fB$projects_list\fR
914 points to a file), forks are only recognized if they are listed after the main project in that file\&.
916 Project specific override is not supported\&.
919 actions
920 .RS 4
921 Insert custom links to the action bar of all project pages\&. This allows you to link to third\-party scripts integrating into gitweb\&.
923 The "default" value consists of a list of triplets in the form
924 \fB("<label>", "<link>", "<position>")\fR
925 where "position" is the label after which to insert the link, "link" is a format string where
926 \fB%n\fR
927 expands to the project name,
928 \fB%f\fR
929 to the project path within the filesystem (i\&.e\&. "$projectroot/$project"),
930 \fB%h\fR
931 to the current hash (\*(Aqh\*(Aq gitweb parameter) and
932 \fB%b\fR
933 to the current hash base (\*(Aqhb\*(Aq gitweb parameter);
934 \fB%%\fR
935 expands to \*(Aq%\*(Aq\&.
937 For example, at the time this page was written, the
938 \m[blue]\fBhttps://repo\&.or\&.cz\fR\m[]
939 Git hosting site set it to the following to enable graphical log (using the third party tool
940 \fBgit\-browser\fR):
942 .if n \{\
943 .RS 4
946 $feature{\*(Aqactions\*(Aq}{\*(Aqdefault\*(Aq} =
947         [ (\*(Aqgraphiclog\*(Aq, \*(Aq/git\-browser/by\-commit\&.html?r=%n\*(Aq, \*(Aqsummary\*(Aq)];
949 .if n \{\
953 This adds a link titled "graphiclog" after the "summary" link, leading to
954 \fBgit\-browser\fR
955 script, passing
956 \fBr=<project>\fR
957 as a query parameter\&.
959 Project specific override is not supported\&.
962 timed
963 .RS 4
964 Enable displaying how much time and how many Git commands it took to generate and display each page in the page footer (at the bottom of page)\&. For example the footer might contain: "This page took 6\&.53325 seconds and 13 Git commands to generate\&." Disabled by default\&.
966 Project specific override is not supported\&.
969 javascript\-timezone
970 .RS 4
971 Enable and configure the ability to change a common time zone for dates in gitweb output via JavaScript\&. Dates in gitweb output include authordate and committerdate in "commit", "commitdiff" and "log" views, and taggerdate in "tag" view\&. Enabled by default\&.
973 The value is a list of three values: a default time zone (for if the client hasn\(cqt selected some other time zone and saved it in a cookie), a name of cookie where to store selected time zone, and a CSS class used to mark up dates for manipulation\&. If you want to turn this feature off, set "default" to empty list:
974 \fB[]\fR\&.
976 Typical gitweb config files will only change starting (default) time zone, and leave other elements at their default values:
978 .if n \{\
979 .RS 4
982 $feature{\*(Aqjavascript\-timezone\*(Aq}{\*(Aqdefault\*(Aq}[0] = "utc";
984 .if n \{\
988 The example configuration presented here is guaranteed to be backwards and forward compatible\&.
990 Time zone values can be "local" (for local time zone that browser uses), "utc" (what gitweb uses when JavaScript or this feature is disabled), or numerical time zones in the form of "+/\-HHMM", such as "+0200"\&.
992 Project specific override is not supported\&.
995 extra\-branch\-refs
996 .RS 4
997 List of additional directories under "refs" which are going to be used as branch refs\&. For example if you have a gerrit setup where all branches under refs/heads/ are official, push\-after\-review ones and branches under refs/sandbox/, refs/wip and refs/other are user ones where permissions are much wider, then you might want to set this variable as follows:
999 .if n \{\
1000 .RS 4
1003 $feature{\*(Aqextra\-branch\-refs\*(Aq}{\*(Aqdefault\*(Aq} =
1004         [\*(Aqsandbox\*(Aq, \*(Aqwip\*(Aq, \*(Aqother\*(Aq];
1006 .if n \{\
1010 This feature can be configured on per\-repository basis after setting $feature{\fIextra\-branch\-refs\fR}{\fIoverride\fR} to true, via repository\(cqs
1011 \fBgitweb\&.extraBranchRefs\fR
1012 configuration variable, which contains a space separated list of refs\&. An example:
1014 .if n \{\
1015 .RS 4
1018 [gitweb]
1019         extraBranchRefs = sandbox wip other
1021 .if n \{\
1025 The gitweb\&.extraBranchRefs is actually a multi\-valued configuration variable, so following example is also correct and the result is the same as of the snippet above:
1027 .if n \{\
1028 .RS 4
1031 [gitweb]
1032         extraBranchRefs = sandbox
1033         extraBranchRefs = wip other
1035 .if n \{\
1039 It is an error to specify a ref that does not pass "git check\-ref\-format" scrutiny\&. Duplicated values are filtered\&.
1041 .SH "EXAMPLES"
1043 To enable blame, pickaxe search, and snapshot support (allowing "tar\&.gz" and "zip" snapshots), while allowing individual projects to turn them off, put the following in your GITWEB_CONFIG file:
1045 .if n \{\
1046 .RS 4
1049 $feature{\*(Aqblame\*(Aq}{\*(Aqdefault\*(Aq} = [1];
1050 $feature{\*(Aqblame\*(Aq}{\*(Aqoverride\*(Aq} = 1;
1052 $feature{\*(Aqpickaxe\*(Aq}{\*(Aqdefault\*(Aq} = [1];
1053 $feature{\*(Aqpickaxe\*(Aq}{\*(Aqoverride\*(Aq} = 1;
1055 $feature{\*(Aqsnapshot\*(Aq}{\*(Aqdefault\*(Aq} = [\*(Aqzip\*(Aq, \*(Aqtgz\*(Aq];
1056 $feature{\*(Aqsnapshot\*(Aq}{\*(Aqoverride\*(Aq} = 1;
1058 .if n \{\
1062 If you allow overriding for the snapshot feature, you can specify which snapshot formats are globally disabled\&. You can also add any command\-line options you want (such as setting the compression level)\&. For instance, you can disable Zip compressed snapshots and set \fBgzip\fR(1) to run at level 6 by adding the following lines to your gitweb configuration file:
1064 .if n \{\
1065 .RS 4
1068 $known_snapshot_formats{\*(Aqzip\*(Aq}{\*(Aqdisabled\*(Aq} = 1;
1069 $known_snapshot_formats{\*(Aqtgz\*(Aq}{\*(Aqcompressor\*(Aq} = [\*(Aqgzip\*(Aq,\*(Aq\-6\*(Aq];
1071 .if n \{\
1074 .SH "BUGS"
1076 Debugging would be easier if the fallback configuration file (\fB/etc/gitweb\&.conf\fR) and environment variable to override its location (\fIGITWEB_CONFIG_SYSTEM\fR) had names reflecting their "fallback" role\&. The current names are kept to avoid breaking working setups\&.
1077 .SH "ENVIRONMENT"
1079 The location of per\-instance and system\-wide configuration files can be overridden using the following environment variables:
1081 GITWEB_CONFIG
1082 .RS 4
1083 Sets location of per\-instance configuration file\&.
1086 GITWEB_CONFIG_SYSTEM
1087 .RS 4
1088 Sets location of fallback system\-wide configuration file\&. This file is read only if per\-instance one does not exist\&.
1091 GITWEB_CONFIG_COMMON
1092 .RS 4
1093 Sets location of common system\-wide configuration file\&.
1095 .SH "FILES"
1097 gitweb_config\&.perl
1098 .RS 4
1099 This is default name of per\-instance configuration file\&. The format of this file is described above\&.
1102 /etc/gitweb\&.conf
1103 .RS 4
1104 This is default name of fallback system\-wide configuration file\&. This file is used only if per\-instance configuration variable is not found\&.
1107 /etc/gitweb\-common\&.conf
1108 .RS 4
1109 This is default name of common system\-wide configuration file\&.
1111 .SH "SEE ALSO"
1113 \fBgitweb\fR(1), \fBgit-instaweb\fR(1)
1115 \fIgitweb/README\fR, \fIgitweb/INSTALL\fR
1116 .SH "GIT"
1118 Part of the \fBgit\fR(1) suite