1GIT web Interface 2================= 3 4The one working on: 5 http://git.kernel.org/ 6 7From the git version 1.4.0 gitweb is bundled with git. 8 9 10How to configure gitweb for your local system 11--------------------------------------------- 12 13See also the "Build time configuration" section in the INSTALL 14file for gitweb (in gitweb/INSTALL). 15 16You can specify the following configuration variables when building GIT: 17 * GIT_BINDIR 18 Points where to find the git executable. You should set it up to 19 the place where the git binary was installed (usually /usr/bin) if you 20 don't install git from sources together with gitweb. [Default: $(bindir)] 21 * GITWEB_SITENAME 22 Shown in the title of all generated pages, defaults to the server name 23 (SERVER_NAME CGI environment variable) if not set. [No default] 24 * GITWEB_PROJECTROOT 25 The root directory for all projects shown by gitweb. Must be set 26 correctly for gitweb to find repositories to display. See also 27 "Gitweb repositories" in the INSTALL file for gitweb. [Default: /pub/git] 28 * GITWEB_PROJECT_MAXDEPTH 29 The filesystem traversing limit for getting the project list; the number 30 is taken as depth relative to the projectroot. It is used when 31 GITWEB_LIST is a directory (or is not set; then project root is used). 32 Is is meant to speed up project listing on large work trees by limiting 33 search depth. [Default: 2007] 34 * GITWEB_LIST 35 Points to a directory to scan for projects (defaults to project root 36 if not set / if empty) or to a file with explicit listing of projects 37 (together with projects' ownership). See "Generating projects list 38 using gitweb" in INSTALL file for gitweb to find out how to generate 39 such file from scan of a directory. [No default, which means use root 40 directory for projects] 41 * GITWEB_EXPORT_OK 42 Show repository only if this file exists (in repository). Only 43 effective if this variable evaluates to true. [No default / Not set] 44 * GITWEB_STRICT_EXPORT 45 Only allow viewing of repositories also shown on the overview page. 46 This for example makes GITWEB_EXPORT_OK to decide if repository is 47 available and not only if it is shown. If GITWEB_LIST points to 48 file with list of project, only those repositories listed would be 49 available for gitweb. [No default] 50 * GITWEB_HOMETEXT 51 Points to an .html file which is included on the gitweb project 52 overview page ('projects_list' view), if it exists. Relative to 53 gitweb.cgi script. [Default: indextext.html] 54 * GITWEB_SITE_HEADER 55 Filename of html text to include at top of each page. Relative to 56 gitweb.cgi script. [No default] 57 * GITWEB_SITE_FOOTER 58 Filename of html text to include at bottom of each page. Relative to 59 gitweb.cgi script. [No default] 60 * GITWEB_HOME_LINK_STR 61 String of the home link on top of all pages, leading to $home_link 62 (usually main gitweb page, which means projects list). Used as first 63 part of gitweb view "breadcrumb trail": <home> / <project> / <view>. 64 [Default: projects] 65 * GITWEB_SITENAME 66 Name of your site or organization to appear in page titles. Set it 67 to something descriptive for clearer bookmarks etc. If not set 68 (if empty) gitweb uses "$SERVER_NAME Git", or "Untitled Git" if 69 SERVER_NAME CGI environment variable is not set (e.g. if running 70 gitweb as standalone script). [No default] 71 * GITWEB_BASE_URL 72 Git base URLs used for URL to where fetch project from, i.e. full 73 URL is "$git_base_url/$project". Shown on projects summary page. 74 Repository URL for project can be also configured per repository; this 75 takes precedence over URLs composed from base URL and a project name. 76 Note that you can setup multiple base URLs (for example one for 77 git:// protocol access, another for http:// access) from the gitweb 78 config file. [No default] 79 * GITWEB_CSS 80 Points to the location where you put gitweb.css on your web server 81 (or to be more generic, the URI of gitweb stylesheet). Relative to the 82 base URI of gitweb. Note that you can setup multiple stylesheets from 83 the gitweb config file. [Default: gitweb.css] 84 * GITWEB_LOGO 85 Points to the location where you put git-logo.png on your web server 86 (or to be more generic URI of logo, 72x27 size, displayed in top right 87 corner of each gitweb page, and used as logo for Atom feed). Relative 88 to base URI of gitweb. [Default: git-logo.png] 89 * GITWEB_FAVICON 90 Points to the location where you put git-favicon.png on your web server 91 (or to be more generic URI of favicon, assumed to be image/png type; 92 web browsers that support favicons (website icons) may display them 93 in the browser's URL bar and next to site name in bookmarks). Relative 94 to base URI of gitweb. [Default: git-favicon.png] 95 * GITWEB_JS 96 Points to the localtion where you put gitweb.js on your web server 97 (or to be more generic URI of JavaScript code used by gitweb). 98 Relative to base URI of gitweb. [Default: gitweb.js] 99 * GITWEB_CONFIG 100 This Perl file will be loaded using 'do' and can be used to override any 101 of the options above as well as some other options -- see the "Runtime 102 gitweb configuration" section below, and top of 'gitweb.cgi' for their 103 full list and description. If the environment variable GITWEB_CONFIG 104 is set when gitweb.cgi is executed, then the file specified in the 105 environment variable will be loaded instead of the file specified 106 when gitweb.cgi was created. [Default: gitweb_config.perl] 107 * GITWEB_CONFIG_SYSTEM 108 This Perl file will be loaded using 'do' as a fallback if GITWEB_CONFIG 109 does not exist. If the environment variable GITWEB_CONFIG_SYSTEM is set 110 when gitweb.cgi is executed, then the file specified in the environment 111 variable will be loaded instead of the file specified when gitweb.cgi was 112 created. [Default: /etc/gitweb.conf] 113 114 115Runtime gitweb configuration 116---------------------------- 117 118You can adjust gitweb behaviour using the file specified in `GITWEB_CONFIG` 119(defaults to 'gitweb_config.perl' in the same directory as the CGI), and 120as a fallback `GITWEB_CONFIG_SYSTEM` (defaults to /etc/gitweb.conf). 121The most notable thing that is not configurable at compile time are the 122optional features, stored in the '%features' variable. 123 124Ultimate description on how to reconfigure the default features setting 125in your `GITWEB_CONFIG` or per-project in `project.git/config` can be found 126as comments inside 'gitweb.cgi'. 127 128See also the "Gitweb config file" (with an example of config file), and 129the "Gitweb repositories" sections in INSTALL file for gitweb. 130 131 132The gitweb config file is a fragment of perl code. You can set variables 133using "our $variable = value"; text from "#" character until the end 134of a line is ignored. See perlsyn(1) man page for details. 135 136Below is the list of variables which you might want to set in gitweb config. 137See the top of 'gitweb.cgi' for the full list of variables and their 138descriptions. 139 140Gitweb config file variables 141~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 142 143You can set, among others, the following variables in gitweb config files 144(with the exception of $projectroot and $projects_list this list does 145not include variables usually directly set during build): 146 * $GIT 147 Core git executable to use. By default set to "$GIT_BINDIR/git", which 148 in turn is by default set to "$(bindir)/git". If you use git from binary 149 package, set this to "/usr/bin/git". This can just be "git" if your 150 webserver has a sensible PATH. If you have multiple git versions 151 installed it can be used to choose which one to use. 152 * $version 153 Gitweb version, set automatically when creating gitweb.cgi from 154 gitweb.perl. You might want to modify it if you are running modified 155 gitweb. 156 * $projectroot 157 Absolute filesystem path which will be prepended to project path; 158 the path to repository is $projectroot/$project. Set to 159 $GITWEB_PROJECTROOT during installation. This variable have to be 160 set correctly for gitweb to find repositories. 161 * $projects_list 162 Source of projects list, either directory to scan, or text file 163 with list of repositories (in the "<URI-encoded repository path> SP 164 <URI-encoded repository owner>" line format; actually there can be 165 any sequence of whitespace in place of space (SP)). Set to 166 $GITWEB_LIST during installation. If empty, $projectroot is used 167 to scan for repositories. 168 * $my_url, $my_uri 169 Full URL and absolute URL of gitweb script; 170 in earlier versions of gitweb you might have need to set those 171 variables, now there should be no need to do it. 172 * $base_url 173 Base URL for relative URLs in pages generated by gitweb, 174 (e.g. $logo, $favicon, @stylesheets if they are relative URLs), 175 needed and used only for URLs with nonempty PATH_INFO via 176 <base href="$base_url>. Usually gitweb sets its value correctly, 177 and there is no need to set this variable, e.g. to $my_uri or "/". 178 * $home_link 179 Target of the home link on top of all pages (the first part of view 180 "breadcrumbs"). By default set to absolute URI of a page ($my_uri). 181 * @stylesheets 182 List of URIs of stylesheets (relative to base URI of a page). You 183 might specify more than one stylesheet, for example use gitweb.css 184 as base, with site specific modifications in separate stylesheet 185 to make it easier to upgrade gitweb. You can add 'site' stylesheet 186 for example by using 187 push @stylesheets, "gitweb-site.css"; 188 in the gitweb config file. 189 * $logo_url, $logo_label 190 URI and label (title) of GIT logo link (or your site logo, if you choose 191 to use different logo image). By default they point to git homepage; 192 in the past they pointed to git documentation at www.kernel.org. 193 * $projects_list_description_width 194 The width (in characters) of the projects list "Description" column. 195 Longer descriptions will be cut (trying to cut at word boundary); 196 full description is available as 'title' attribute (usually shown on 197 mouseover). By default set to 25, which might be too small if you 198 use long project descriptions. 199 * @git_base_url_list 200 List of git base URLs used for URL to where fetch project from, shown 201 in project summary page. Full URL is "$git_base_url/$project". 202 You can setup multiple base URLs (for example one for git:// protocol 203 access, and one for http:// "dumb" protocol access). Note that per 204 repository configuration in 'cloneurl' file, or as values of gitweb.url 205 project config. 206 * $default_blob_plain_mimetype 207 Default mimetype for blob_plain (raw) view, if mimetype checking 208 doesn't result in some other type; by default 'text/plain'. 209 * $default_text_plain_charset 210 Default charset for text files. If not set, web server configuration 211 would be used. 212 * $mimetypes_file 213 File to use for (filename extension based) guessing of MIME types before 214 trying /etc/mime.types. Path, if relative, is taken currently as 215 relative to the current git repository. 216 * $fallback_encoding 217 Gitweb assumes this charset if line contains non-UTF-8 characters. 218 Fallback decoding is used without error checking, so it can be even 219 'utf-8'. Value must be valid encoding; see Encoding::Supported(3pm) man 220 page for a list. By default 'latin1', aka. 'iso-8859-1'. 221 * @diff_opts 222 Rename detection options for git-diff and git-diff-tree. By default 223 ('-M'); set it to ('-C') or ('-C', '-C') to also detect copies, or 224 set it to () if you don't want to have renames detection. 225 * $prevent_xss 226 If true, some gitweb features are disabled to prevent content in 227 repositories from launching cross-site scripting (XSS) attacks. Set this 228 to true if you don't trust the content of your repositories. The default 229 is false. 230 231 232Projects list file format 233~~~~~~~~~~~~~~~~~~~~~~~~~ 234 235Instead of having gitweb find repositories by scanning filesystem starting 236from $projectroot (or $projects_list, if it points to directory), you can 237provide list of projects by setting $projects_list to a text file with list 238of projects (and some additional info). This file uses the following 239format: 240 241One record (for project / repository) per line, whitespace separated fields; 242does not support (at least for now) lines continuation (newline escaping). 243Leading and trailing whitespace are ignored, any run of whitespace can be 244used as field separator (rules for Perl's "split(' ', $line)"). Keyed by 245the first field, which is project name, i.e. path to repository GIT_DIR 246relative to $projectroot. Fields use modified URI encoding, defined in 247RFC 3986, section 2.1 (Percent-Encoding), or rather "Query string encoding" 248(see http://en.wikipedia.org/wiki/Query_string#URL_encoding), the difference 249being that SP (' ') can be encoded as '+' (and therefore '+' has to be also 250percent-encoded). Reserved characters are: '%' (used for encoding), '+' 251(can be used to encode SPACE), all whitespace characters as defined in Perl, 252including SP, TAB and LF, (used to separate fields in a record). 253 254Currently list of fields is 255 * <repository path> - path to repository GIT_DIR, relative to $projectroot 256 * <repository owner> - displayed as repository owner, preferably full name, 257 or email, or both 258 259You can additionally use $projects_list file to limit which repositories 260are visible, and together with $strict_export to limit access to 261repositories (see "Gitweb repositories" section in gitweb/INSTALL). 262 263 264Per-repository gitweb configuration 265~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 266 267You can also configure individual repositories shown in gitweb by creating 268file in the GIT_DIR of git repository, or by setting some repo configuration 269variable (in GIT_DIR/config). 270 271You can use the following files in repository: 272 * README.html 273 A .html file (HTML fragment) which is included on the gitweb project 274 summary page inside <div> block element. You can use it for longer 275 description of a project, to provide links (for example to project's 276 homepage), etc. This is recognized only if XSS prevention is off 277 ($prevent_xss is false); a way to include a readme safely when XSS 278 prevention is on may be worked out in the future. 279 * description (or gitweb.description) 280 Short (shortened by default to 25 characters in the projects list page) 281 single line description of a project (of a repository). Plain text file; 282 HTML will be escaped. By default set to 283 Unnamed repository; edit this file to name it for gitweb. 284 from the template during repository creation. You can use the 285 gitweb.description repo configuration variable, but the file takes 286 precedence. 287 * cloneurl (or multiple-valued gitweb.url) 288 File with repository URL (used for clone and fetch), one per line. 289 Displayed in the project summary page. You can use multiple-valued 290 gitweb.url repository configuration variable for that, but the file 291 takes precedence. 292 * gitweb.owner 293 You can use the gitweb.owner repository configuration variable to set 294 repository's owner. It is displayed in the project list and summary 295 page. If it's not set, filesystem directory's owner is used 296 (via GECOS field / real name field from getpwiud(3)). 297 * various gitweb.* config variables (in config) 298 Read description of %feature hash for detailed list, and some 299 descriptions. 300 301 302Webserver configuration 303----------------------- 304 305If you want to have one URL for both gitweb and your http:// 306repositories, you can configure apache like this: 307 308<VirtualHost *:80> 309 ServerName git.example.org 310 DocumentRoot /pub/git 311 SetEnv GITWEB_CONFIG /etc/gitweb.conf 312 RewriteEngine on 313 # make the front page an internal rewrite to the gitweb script 314 RewriteRule ^/$ /cgi-bin/gitweb.cgi 315 # make access for "dumb clients" work 316 RewriteRule ^/(.*\.git/(?!/?(HEAD|info|objects|refs)).*)?$ /cgi-bin/gitweb.cgi%{REQUEST_URI} [L,PT] 317</VirtualHost> 318 319The above configuration expects your public repositories to live under 320/pub/git and will serve them as http://git.domain.org/dir-under-pub-git, 321both as cloneable GIT URL and as browseable gitweb interface. 322If you then start your git-daemon with --base-path=/pub/git --export-all 323then you can even use the git:// URL with exactly the same path. 324 325Setting the environment variable GITWEB_CONFIG will tell gitweb to use 326the named file (i.e. in this example /etc/gitweb.conf) as a 327configuration for gitweb. Perl variables defined in here will 328override the defaults given at the head of the gitweb.perl (or 329gitweb.cgi). Look at the comments in that file for information on 330which variables and what they mean. 331 332If you use the rewrite rules from the example you'll likely also need 333something like the following in your gitweb.conf (or gitweb_config.perl) file: 334 335 @stylesheets = ("/some/absolute/path/gitweb.css"); 336 $my_uri = "/"; 337 $home_link = "/"; 338 339 340PATH_INFO usage 341----------------------- 342If you enable PATH_INFO usage in gitweb by putting 343 344 $feature{'pathinfo'}{'default'} = [1]; 345 346in your gitweb.conf, it is possible to set up your server so that it 347consumes and produces URLs in the form 348 349http://git.example.com/project.git/shortlog/sometag 350 351by using a configuration such as the following, that assumes that 352/var/www/gitweb is the DocumentRoot of your webserver, and that it 353contains the gitweb.cgi script and complementary static files 354(stylesheet, favicon): 355 356<VirtualHost *:80> 357 ServerAlias git.example.com 358 359 DocumentRoot /var/www/gitweb 360 361 <Directory /var/www/gitweb> 362 Options ExecCGI 363 AddHandler cgi-script cgi 364 365 DirectoryIndex gitweb.cgi 366 367 RewriteEngine On 368 RewriteCond %{REQUEST_FILENAME} !-f 369 RewriteCond %{REQUEST_FILENAME} !-d 370 RewriteRule ^.* /gitweb.cgi/$0 [L,PT] 371 </Directory> 372</VirtualHost> 373 374The rewrite rule guarantees that existing static files will be properly 375served, whereas any other URL will be passed to gitweb as PATH_INFO 376parameter. 377 378Notice that in this case you don't need special settings for 379@stylesheets, $my_uri and $home_link, but you lose "dumb client" access 380to your project .git dirs. A possible workaround for the latter is the 381following: in your project root dir (e.g. /pub/git) have the projects 382named without a .git extension (e.g. /pub/git/project instead of 383/pub/git/project.git) and configure Apache as follows: 384 385<VirtualHost *:80> 386 ServerAlias git.example.com 387 388 DocumentRoot /var/www/gitweb 389 390 AliasMatch ^(/.*?)(\.git)(/.*)?$ /pub/git$1$3 391 <Directory /var/www/gitweb> 392 Options ExecCGI 393 AddHandler cgi-script cgi 394 395 DirectoryIndex gitweb.cgi 396 397 RewriteEngine On 398 RewriteCond %{REQUEST_FILENAME} !-f 399 RewriteCond %{REQUEST_FILENAME} !-d 400 RewriteRule ^.* /gitweb.cgi/$0 [L,PT] 401 </Directory> 402</VirtualHost> 403 404The additional AliasMatch makes it so that 405 406http://git.example.com/project.git 407 408will give raw access to the project's git dir (so that the project can 409be cloned), while 410 411http://git.example.com/project 412 413will provide human-friendly gitweb access. 414 415This solution is not 100% bulletproof, in the sense that if some project 416has a named ref (branch, tag) starting with 'git/', then paths such as 417 418http://git.example.com/project/command/abranch..git/abranch 419 420will fail with a 404 error. 421 422 423 424Originally written by: 425 Kay Sievers <kay.sievers@vrfy.org> 426 427Any comment/question/concern to: 428 Git mailing list <git@vger.kernel.org>