Autogenerated manpages for v2.41.0-rc0-4-g004e0
[git-manpages.git] / man1 / gitweb.1
blobad3e60f1ba0190a9c215b1910a9917f0d6d46b29
1 '\" t
2 .\"     Title: gitweb
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-05-17
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.41.0.rc0.4.g004e0f790f
8 .\"  Language: English
9 .\"
10 .TH "GITWEB" "1" "2023\-05\-17" "Git 2\&.41\&.0\&.rc0\&.4\&.g00" "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 \- Git web interface (web frontend to Git repositories)
32 .SH "SYNOPSIS"
33 .sp
34 To get started with gitweb, run \fBgit-instaweb\fR(1) from a Git repository\&. This would configure and start your web server, and run web browser pointing to gitweb\&.
35 .SH "DESCRIPTION"
36 .sp
37 Gitweb provides a web interface to Git repositories\&. Its features include:
38 .sp
39 .RS 4
40 .ie n \{\
41 \h'-04'\(bu\h'+03'\c
42 .\}
43 .el \{\
44 .sp -1
45 .IP \(bu 2.3
46 .\}
47 Viewing multiple Git repositories with common root\&.
48 .RE
49 .sp
50 .RS 4
51 .ie n \{\
52 \h'-04'\(bu\h'+03'\c
53 .\}
54 .el \{\
55 .sp -1
56 .IP \(bu 2.3
57 .\}
58 Browsing every revision of the repository\&.
59 .RE
60 .sp
61 .RS 4
62 .ie n \{\
63 \h'-04'\(bu\h'+03'\c
64 .\}
65 .el \{\
66 .sp -1
67 .IP \(bu 2.3
68 .\}
69 Viewing the contents of files in the repository at any revision\&.
70 .RE
71 .sp
72 .RS 4
73 .ie n \{\
74 \h'-04'\(bu\h'+03'\c
75 .\}
76 .el \{\
77 .sp -1
78 .IP \(bu 2.3
79 .\}
80 Viewing the revision log of branches, history of files and directories, see what was changed when, by who\&.
81 .RE
82 .sp
83 .RS 4
84 .ie n \{\
85 \h'-04'\(bu\h'+03'\c
86 .\}
87 .el \{\
88 .sp -1
89 .IP \(bu 2.3
90 .\}
91 Viewing the blame/annotation details of any file (if enabled)\&.
92 .RE
93 .sp
94 .RS 4
95 .ie n \{\
96 \h'-04'\(bu\h'+03'\c
97 .\}
98 .el \{\
99 .sp -1
100 .IP \(bu 2.3
102 Generating RSS and Atom feeds of commits, for any branch\&. The feeds are auto\-discoverable in modern web browsers\&.
105 .RS 4
106 .ie n \{\
107 \h'-04'\(bu\h'+03'\c
109 .el \{\
110 .sp -1
111 .IP \(bu 2.3
113 Viewing everything that was changed in a revision, and step through revisions one at a time, viewing the history of the repository\&.
116 .RS 4
117 .ie n \{\
118 \h'-04'\(bu\h'+03'\c
120 .el \{\
121 .sp -1
122 .IP \(bu 2.3
124 Finding commits which commit messages matches given search term\&.
127 See \m[blue]\fBhttp://repo\&.or\&.cz/w/git\&.git/tree/HEAD:/gitweb/\fR\m[] for gitweb source code, browsed using gitweb itself\&.
128 .SH "CONFIGURATION"
130 Various aspects of gitweb\(cqs behavior can be controlled through the configuration file \fBgitweb_config\&.perl\fR or \fB/etc/gitweb\&.conf\fR\&. See the \fBgitweb.conf\fR(5) for details\&.
131 .SS "Repositories"
133 Gitweb can show information from one or more Git repositories\&. These repositories have to be all on local filesystem, and have to share common repository root, i\&.e\&. be all under a single parent repository (but see also "Advanced web server setup" section, "Webserver configuration with multiple projects\*(Aq root" subsection)\&.
135 .if n \{\
136 .RS 4
139 our $projectroot = \*(Aq/path/to/parent/directory\*(Aq;
141 .if n \{\
146 The default value for \fB$projectroot\fR is \fB/pub/git\fR\&. You can change it during building gitweb via \fBGITWEB_PROJECTROOT\fR build configuration variable\&.
148 By default all Git repositories under \fB$projectroot\fR are visible and available to gitweb\&. The list of projects is generated by default by scanning the \fB$projectroot\fR directory for Git repositories (for object databases to be more exact; gitweb is not interested in a working area, and is best suited to showing "bare" repositories)\&.
150 The name of the repository in gitweb is the path to its \fB$GIT_DIR\fR (its object database) relative to \fB$projectroot\fR\&. Therefore the repository $repo can be found at "$projectroot/$repo"\&.
151 .SS "Projects list file format"
153 Instead of having gitweb find repositories by scanning filesystem starting from $projectroot, you can provide a pre\-generated list of visible projects by setting \fB$projects_list\fR to point to a plain text file with a list of projects (with some additional info)\&.
155 This file uses the following format:
157 .RS 4
158 .ie n \{\
159 \h'-04'\(bu\h'+03'\c
161 .el \{\
162 .sp -1
163 .IP \(bu 2.3
165 One record (for project / repository) per line; does not support line continuation (newline escaping)\&.
168 .RS 4
169 .ie n \{\
170 \h'-04'\(bu\h'+03'\c
172 .el \{\
173 .sp -1
174 .IP \(bu 2.3
176 Leading and trailing whitespace are ignored\&.
179 .RS 4
180 .ie n \{\
181 \h'-04'\(bu\h'+03'\c
183 .el \{\
184 .sp -1
185 .IP \(bu 2.3
187 Whitespace separated fields; any run of whitespace can be used as field separator (rules for Perl\(cqs "\fBsplit(" ", $line)\fR")\&.
190 .RS 4
191 .ie n \{\
192 \h'-04'\(bu\h'+03'\c
194 .el \{\
195 .sp -1
196 .IP \(bu 2.3
198 Fields use modified URI encoding, defined in RFC 3986, section 2\&.1 (Percent\-Encoding), or rather "Query string encoding" (see
199 \m[blue]\fBhttps://en\&.wikipedia\&.org/wiki/Query_string#URL_encoding\fR\m[]), the difference being that SP (" ") can be encoded as "+" (and therefore "+" has to be also percent\-encoded)\&.
201 Reserved characters are: "%" (used for encoding), "+" (can be used to encode SPACE), all whitespace characters as defined in Perl, including SP, TAB and LF, (used to separate fields in a record)\&.
204 .RS 4
205 .ie n \{\
206 \h'-04'\(bu\h'+03'\c
208 .el \{\
209 .sp -1
210 .IP \(bu 2.3
212 Currently recognized fields are:
214 <repository path>
215 .RS 4
216 path to repository GIT_DIR, relative to
217 \fB$projectroot\fR
220 <repository owner>
221 .RS 4
222 displayed as repository owner, preferably full name, or email, or both
226 You can generate the projects list index file using the project_index action (the \fITXT\fR link on projects list page) directly from gitweb; see also "Generating projects list using gitweb" section below\&.
228 Example contents:
230 .if n \{\
231 .RS 4
234 foo\&.git       Joe+R+Hacker+<joe@example\&.com>
235 foo/bar\&.git   O+W+Ner+<owner@example\&.org>
237 .if n \{\
242 By default this file controls only which projects are \fBvisible\fR on projects list page (note that entries that do not point to correctly recognized Git repositories won\(cqt be displayed by gitweb)\&. Even if a project is not visible on projects list page, you can view it nevertheless by hand\-crafting a gitweb URL\&. By setting \fB$strict_export\fR configuration variable (see \fBgitweb.conf\fR(5)) to true value you can allow viewing only of repositories also shown on the overview page (i\&.e\&. only projects explicitly listed in projects list file will be accessible)\&.
243 .SS "Generating projects list using gitweb"
245 We assume that GITWEB_CONFIG has its default Makefile value, namely \fIgitweb_config\&.perl\fR\&. Put the following in \fIgitweb_make_index\&.perl\fR file:
247 .if n \{\
248 .RS 4
251 read_config_file("gitweb_config\&.perl");
252 $projects_list = $projectroot;
254 .if n \{\
259 Then create the following script to get list of project in the format suitable for GITWEB_LIST build configuration variable (or \fB$projects_list\fR variable in gitweb config):
261 .if n \{\
262 .RS 4
265 #!/bin/sh
267 export GITWEB_CONFIG="gitweb_make_index\&.perl"
268 export GATEWAY_INTERFACE="CGI/1\&.1"
269 export HTTP_ACCEPT="*/*"
270 export REQUEST_METHOD="GET"
271 export QUERY_STRING="a=project_index"
273 perl \-\- /var/www/cgi\-bin/gitweb\&.cgi
275 .if n \{\
280 Run this script and save its output to a file\&. This file could then be used as projects list file, which means that you can set \fB$projects_list\fR to its filename\&.
281 .SS "Controlling access to Git repositories"
283 By default all Git repositories under \fB$projectroot\fR are visible and available to gitweb\&. You can however configure how gitweb controls access to repositories\&.
285 .RS 4
286 .ie n \{\
287 \h'-04'\(bu\h'+03'\c
289 .el \{\
290 .sp -1
291 .IP \(bu 2.3
293 As described in "Projects list file format" section, you can control which projects are
294 \fBvisible\fR
295 by selectively including repositories in projects list file, and setting
296 \fB$projects_list\fR
297 gitweb configuration variable to point to it\&. With
298 \fB$strict_export\fR
299 set, projects list file can be used to control which repositories are
300 \fBavailable\fR
301 as well\&.
304 .RS 4
305 .ie n \{\
306 \h'-04'\(bu\h'+03'\c
308 .el \{\
309 .sp -1
310 .IP \(bu 2.3
312 You can configure gitweb to only list and allow viewing of the explicitly exported repositories, via
313 \fB$export_ok\fR
314 variable in gitweb config file; see
315 \fBgitweb.conf\fR(5)
316 manpage\&. If it evaluates to true, gitweb shows repositories only if this file named by
317 \fB$export_ok\fR
318 exists in its object database (if directory has the magic file named
319 \fB$export_ok\fR)\&.
321 For example
322 \fBgit-daemon\fR(1)
323 by default (unless
324 \fB\-\-export\-all\fR
325 option is used) allows pulling only for those repositories that have
326 \fIgit\-daemon\-export\-ok\fR
327 file\&. Adding
329 .if n \{\
330 .RS 4
333 our $export_ok = "git\-daemon\-export\-ok";
335 .if n \{\
339 makes gitweb show and allow access only to those repositories that can be fetched from via
340 \fBgit://\fR
341 protocol\&.
344 .RS 4
345 .ie n \{\
346 \h'-04'\(bu\h'+03'\c
348 .el \{\
349 .sp -1
350 .IP \(bu 2.3
352 Finally, it is possible to specify an arbitrary perl subroutine that will be called for each repository to determine if it can be exported\&. The subroutine receives an absolute path to the project (repository) as its only parameter (i\&.e\&. "$projectroot/$project")\&.
354 For example, if you use mod_perl to run the script, and have dumb HTTP protocol authentication configured for your repositories, you can use the following hook to allow access only if the user is authorized to read the files:
356 .if n \{\
357 .RS 4
360 $export_auth_hook = sub {
361         use Apache2::SubRequest ();
362         use Apache2::Const \-compile => qw(HTTP_OK);
363         my $path = "$_[0]/HEAD";
364         my $r    = Apache2::RequestUtil\->request;
365         my $sub  = $r\->lookup_file($path);
366         return $sub\->filename eq $path
367             && $sub\->status == Apache2::Const::HTTP_OK;
370 .if n \{\
375 .SS "Per\-repository gitweb configuration"
377 You can configure individual repositories shown in gitweb by creating file in the \fBGIT_DIR\fR of Git repository, or by setting some repo configuration variable (in \fBGIT_DIR/config\fR, see \fBgit-config\fR(1))\&.
379 You can use the following files in repository:
381 README\&.html
382 .RS 4
383 A html file (HTML fragment) which is included on the gitweb project "summary" page inside
384 \fB<div>\fR
385 block element\&. You can use it for longer description of a project, to provide links (for example to project\(cqs homepage), etc\&. This is recognized only if XSS prevention is off (\fB$prevent_xss\fR
386 is false, see
387 \fBgitweb.conf\fR(5)); a way to include a README safely when XSS prevention is on may be worked out in the future\&.
390 description (or \fBgitweb\&.description\fR)
391 .RS 4
392 Short (shortened to
393 \fB$projects_list_description_width\fR
394 in the projects list page, which is 25 characters by default; see
395 \fBgitweb.conf\fR(5)) single line description of a project (of a repository)\&. Plain text file; HTML will be escaped\&. By default set to
397 .if n \{\
398 .RS 4
401 Unnamed repository; edit this file to name it for gitweb\&.
403 .if n \{\
407 from the template during repository creation, usually installed in
408 \fB/usr/share/git\-core/templates/\fR\&. You can use the
409 \fBgitweb\&.description\fR
410 repo configuration variable, but the file takes precedence\&.
413 category (or \fBgitweb\&.category\fR)
414 .RS 4
415 Singe line category of a project, used to group projects if
416 \fB$projects_list_group_categories\fR
417 is enabled\&. By default (file and configuration variable absent), uncategorized projects are put in the
418 \fB$project_list_default_category\fR
419 category\&. You can use the
420 \fBgitweb\&.category\fR
421 repo configuration variable, but the file takes precedence\&.
423 The configuration variables
424 \fB$projects_list_group_categories\fR
426 \fB$project_list_default_category\fR
427 are described in
428 \fBgitweb.conf\fR(5)
431 cloneurl (or multiple\-valued \fBgitweb\&.url\fR)
432 .RS 4
433 File with repository URL (used for clone and fetch), one per line\&. Displayed in the project summary page\&. You can use multiple\-valued
434 \fBgitweb\&.url\fR
435 repository configuration variable for that, but the file takes precedence\&.
437 This is per\-repository enhancement / version of global prefix\-based
438 \fB@git_base_url_list\fR
439 gitweb configuration variable (see
440 \fBgitweb.conf\fR(5))\&.
443 gitweb\&.owner
444 .RS 4
445 You can use the
446 \fBgitweb\&.owner\fR
447 repository configuration variable to set repository\(cqs owner\&. It is displayed in the project list and summary page\&.
449 If it\(cqs not set, filesystem directory\(cqs owner is used (via GECOS field, i\&.e\&. real name field from
450 \fBgetpwuid\fR(3)) if
451 \fB$projects_list\fR
452 is unset (gitweb scans
453 \fB$projectroot\fR
454 for repositories); if
455 \fB$projects_list\fR
456 points to file with list of repositories, then project owner defaults to value from this file for given repository\&.
459 various \fBgitweb\&.*\fR config variables (in config)
460 .RS 4
461 Read description of
462 \fB%feature\fR
463 hash for detailed list, and descriptions\&. See also "Configuring gitweb features" section in
464 \fBgitweb.conf\fR(5)
466 .SH "ACTIONS, AND URLS"
468 Gitweb can use path_info (component) based URLs, or it can pass all necessary information via query parameters\&. The typical gitweb URLs are broken down in to five components:
470 .if n \{\
471 .RS 4
474 \&.\&.\&./gitweb\&.cgi/<repo>/<action>/<revision>:/<path>?<arguments>
476 .if n \{\
482 repo
483 .RS 4
484 The repository the action will be performed on\&.
486 All actions except for those that list all available projects, in whatever form, require this parameter\&.
489 action
490 .RS 4
491 The action that will be run\&. Defaults to
492 \fIprojects_list\fR
493 if repo is not set, and to
494 \fIsummary\fR
495 otherwise\&.
498 revision
499 .RS 4
500 Revision shown\&. Defaults to HEAD\&.
503 path
504 .RS 4
505 The path within the <repository> that the action is performed on, for those actions that require it\&.
508 arguments
509 .RS 4
510 Any arguments that control the behaviour of the action\&.
513 Some actions require or allow to specify two revisions, and sometimes even two pathnames\&. In most general form such path_info (component) based gitweb URL looks like this:
515 .if n \{\
516 .RS 4
519 \&.\&.\&./gitweb\&.cgi/<repo>/<action>/<revision_from>:/<path_from>\&.\&.<revision_to>:/<path_to>?<arguments>
521 .if n \{\
526 Each action is implemented as a subroutine, and must be present in %actions hash\&. Some actions are disabled by default, and must be turned on via feature mechanism\&. For example to enable \fIblame\fR view add the following to gitweb configuration file:
528 .if n \{\
529 .RS 4
532 $feature{\*(Aqblame\*(Aq}{\*(Aqdefault\*(Aq} = [1];
534 .if n \{\
538 .SS "Actions:"
540 The standard actions are:
542 project_list
543 .RS 4
544 Lists the available Git repositories\&. This is the default command if no repository is specified in the URL\&.
547 summary
548 .RS 4
549 Displays summary about given repository\&. This is the default command if no action is specified in URL, and only repository is specified\&.
552 heads, remotes
553 .RS 4
554 Lists all local or all remote\-tracking branches in given repository\&.
556 The latter is not available by default, unless configured\&.
559 tags
560 .RS 4
561 List all tags (lightweight and annotated) in given repository\&.
564 blob, tree
565 .RS 4
566 Shows the files and directories in a given repository path, at given revision\&. This is default command if no action is specified in the URL, and path is given\&.
569 blob_plain
570 .RS 4
571 Returns the raw data for the file in given repository, at given path and revision\&. Links to this action are marked
572 \fIraw\fR\&.
575 blobdiff
576 .RS 4
577 Shows the difference between two revisions of the same file\&.
580 blame, blame_incremental
581 .RS 4
582 Shows the blame (also called annotation) information for a file\&. On a per line basis it shows the revision in which that line was last changed and the user that committed the change\&. The incremental version (which if configured is used automatically when JavaScript is enabled) uses Ajax to incrementally add blame info to the contents of given file\&.
584 This action is disabled by default for performance reasons\&.
587 commit, commitdiff
588 .RS 4
589 Shows information about a specific commit in a repository\&. The
590 \fIcommit\fR
591 view shows information about commit in more detail, the
592 \fIcommitdiff\fR
593 action shows changeset for given commit\&.
596 patch
597 .RS 4
598 Returns the commit in plain text mail format, suitable for applying with
599 \fBgit-am\fR(1)\&.
603 .RS 4
604 Display specific annotated tag (tag object)\&.
607 log, shortlog
608 .RS 4
609 Shows log information (commit message or just commit subject) for a given branch (starting from given revision)\&.
612 \fIshortlog\fR
613 view is more compact; it shows one commit per line\&.
616 history
617 .RS 4
618 Shows history of the file or directory in a given repository path, starting from given revision (defaults to HEAD, i\&.e\&. default branch)\&.
620 This view is similar to
621 \fIshortlog\fR
622 view\&.
625 rss, atom
626 .RS 4
627 Generates an RSS (or Atom) feed of changes to repository\&.
629 .SH "WEBSERVER CONFIGURATION"
631 This section explains how to configure some common webservers to run gitweb\&. In all cases, \fB/path/to/gitweb\fR in the examples is the directory you ran installed gitweb in, and contains \fBgitweb_config\&.perl\fR\&.
633 If you\(cqve configured a web server that isn\(cqt listed here for gitweb, please send in the instructions so they can be included in a future release\&.
634 .SS "Apache as CGI"
636 Apache must be configured to support CGI scripts in the directory in which gitweb is installed\&. Let\(cqs assume that it is \fB/var/www/cgi\-bin\fR directory\&.
638 .if n \{\
639 .RS 4
642 ScriptAlias /cgi\-bin/ "/var/www/cgi\-bin/"
644 <Directory "/var/www/cgi\-bin">
645     Options Indexes FollowSymlinks ExecCGI
646     AllowOverride None
647     Order allow,deny
648     Allow from all
649 </Directory>
651 .if n \{\
656 With that configuration the full path to browse repositories would be:
658 .if n \{\
659 .RS 4
662 http://server/cgi\-bin/gitweb\&.cgi
664 .if n \{\
667 .SS "Apache with mod_perl, via ModPerl::Registry"
669 You can use mod_perl with gitweb\&. You must install Apache::Registry (for mod_perl 1\&.x) or ModPerl::Registry (for mod_perl 2\&.x) to enable this support\&.
671 Assuming that gitweb is installed to \fB/var/www/perl\fR, the following Apache configuration (for mod_perl 2\&.x) is suitable\&.
673 .if n \{\
674 .RS 4
677 Alias /perl "/var/www/perl"
679 <Directory "/var/www/perl">
680     SetHandler perl\-script
681     PerlResponseHandler ModPerl::Registry
682     PerlOptions +ParseHeaders
683     Options Indexes FollowSymlinks +ExecCGI
684     AllowOverride None
685     Order allow,deny
686     Allow from all
687 </Directory>
689 .if n \{\
694 With that configuration the full path to browse repositories would be:
696 .if n \{\
697 .RS 4
700 http://server/perl/gitweb\&.cgi
702 .if n \{\
705 .SS "Apache with FastCGI"
707 Gitweb works with Apache and FastCGI\&. First you need to rename, copy or symlink gitweb\&.cgi to gitweb\&.fcgi\&. Let\(cqs assume that gitweb is installed in \fB/usr/share/gitweb\fR directory\&. The following Apache configuration is suitable (UNTESTED!)
709 .if n \{\
710 .RS 4
713 FastCgiServer /usr/share/gitweb/gitweb\&.cgi
714 ScriptAlias /gitweb /usr/share/gitweb/gitweb\&.cgi
716 Alias /gitweb/static /usr/share/gitweb/static
717 <Directory /usr/share/gitweb/static>
718     SetHandler default\-handler
719 </Directory>
721 .if n \{\
726 With that configuration the full path to browse repositories would be:
728 .if n \{\
729 .RS 4
732 http://server/gitweb
734 .if n \{\
737 .SH "ADVANCED WEB SERVER SETUP"
739 All of those examples use request rewriting, and need \fBmod_rewrite\fR (or equivalent; examples below are written for Apache)\&.
740 .SS "Single URL for gitweb and for fetching"
742 If you want to have one URL for both gitweb and your \fBhttp://\fR repositories, you can configure Apache like this:
744 .if n \{\
745 .RS 4
748 <VirtualHost *:80>
749     ServerName    git\&.example\&.org
750     DocumentRoot  /pub/git
751     SetEnv        GITWEB_CONFIG   /etc/gitweb\&.conf
753     # turning on mod rewrite
754     RewriteEngine on
756     # make the front page an internal rewrite to the gitweb script
757     RewriteRule ^/$  /cgi\-bin/gitweb\&.cgi
759     # make access for "dumb clients" work
760     RewriteRule ^/(\&.*\e\&.git/(?!/?(HEAD|info|objects|refs))\&.*)?$ \e
761                 /cgi\-bin/gitweb\&.cgi%{REQUEST_URI}  [L,PT]
762 </VirtualHost>
764 .if n \{\
769 The above configuration expects your public repositories to live under \fB/pub/git\fR and will serve them as \fBhttp://git\&.domain\&.org/dir\-under\-pub\-git\fR, both as clonable Git URL and as browseable gitweb interface\&. If you then start your \fBgit-daemon\fR(1) with \fB\-\-base\-path=/pub/git \-\-export\-all\fR then you can even use the \fBgit://\fR URL with exactly the same path\&.
771 Setting the environment variable \fBGITWEB_CONFIG\fR will tell gitweb to use the named file (i\&.e\&. in this example \fB/etc/gitweb\&.conf\fR) as a configuration for gitweb\&. You don\(cqt really need it in above example; it is required only if your configuration file is in different place than built\-in (during compiling gitweb) \fIgitweb_config\&.perl\fR or \fB/etc/gitweb\&.conf\fR\&. See \fBgitweb.conf\fR(5) for details, especially information about precedence rules\&.
773 If you use the rewrite rules from the example you \fBmight\fR also need something like the following in your gitweb configuration file (\fB/etc/gitweb\&.conf\fR following example):
775 .if n \{\
776 .RS 4
779 @stylesheets = ("/some/absolute/path/gitweb\&.css");
780 $my_uri    = "/";
781 $home_link = "/";
782 $per_request_config = 1;
784 .if n \{\
789 Nowadays though gitweb should create HTML base tag when needed (to set base URI for relative links), so it should work automatically\&.
790 .SS "Webserver configuration with multiple projects\*(Aq root"
792 If you want to use gitweb with several project roots you can edit your Apache virtual host and gitweb configuration files in the following way\&.
794 The virtual host configuration (in Apache configuration file) should look like this:
796 .if n \{\
797 .RS 4
800 <VirtualHost *:80>
801     ServerName    git\&.example\&.org
802     DocumentRoot  /pub/git
803     SetEnv        GITWEB_CONFIG  /etc/gitweb\&.conf
805     # turning on mod rewrite
806     RewriteEngine on
808     # make the front page an internal rewrite to the gitweb script
809     RewriteRule ^/$  /cgi\-bin/gitweb\&.cgi  [QSA,L,PT]
811     # look for a public_git directory in unix users\*(Aq home
812     # http://git\&.example\&.org/~<user>/
813     RewriteRule ^/\e~([^\e/]+)(/|/gitweb\&.cgi)?$   /cgi\-bin/gitweb\&.cgi \e
814                 [QSA,E=GITWEB_PROJECTROOT:/home/$1/public_git/,L,PT]
816     # http://git\&.example\&.org/+<user>/
817     #RewriteRule ^/\e+([^\e/]+)(/|/gitweb\&.cgi)?$  /cgi\-bin/gitweb\&.cgi \e
818                  [QSA,E=GITWEB_PROJECTROOT:/home/$1/public_git/,L,PT]
820     # http://git\&.example\&.org/user/<user>/
821     #RewriteRule ^/user/([^\e/]+)/(gitweb\&.cgi)?$ /cgi\-bin/gitweb\&.cgi \e
822                  [QSA,E=GITWEB_PROJECTROOT:/home/$1/public_git/,L,PT]
824     # defined list of project roots
825     RewriteRule ^/scm(/|/gitweb\&.cgi)?$ /cgi\-bin/gitweb\&.cgi \e
826                 [QSA,E=GITWEB_PROJECTROOT:/pub/scm/,L,PT]
827     RewriteRule ^/var(/|/gitweb\&.cgi)?$ /cgi\-bin/gitweb\&.cgi \e
828                 [QSA,E=GITWEB_PROJECTROOT:/var/git/,L,PT]
830     # make access for "dumb clients" work
831     RewriteRule ^/(\&.*\e\&.git/(?!/?(HEAD|info|objects|refs))\&.*)?$ \e
832                 /cgi\-bin/gitweb\&.cgi%{REQUEST_URI}  [L,PT]
833 </VirtualHost>
835 .if n \{\
840 Here actual project root is passed to gitweb via \fBGITWEB_PROJECT_ROOT\fR environment variable from a web server, so you need to put the following line in gitweb configuration file (\fB/etc/gitweb\&.conf\fR in above example):
842 .if n \{\
843 .RS 4
846 $projectroot = $ENV{\*(AqGITWEB_PROJECTROOT\*(Aq} || "/pub/git";
848 .if n \{\
853 \fBNote\fR that this requires to be set for each request, so either \fB$per_request_config\fR must be false, or the above must be put in code referenced by \fB$per_request_config\fR;
855 These configurations enable two things\&. First, each unix user (\fB<user>\fR) of the server will be able to browse through gitweb Git repositories found in \fB~/public_git/\fR with the following url:
857 .if n \{\
858 .RS 4
861 http://git\&.example\&.org/~<user>/
863 .if n \{\
867 If you do not want this feature on your server just remove the second rewrite rule\&.
869 If you already use \(oqmod_userdir` in your virtual host or you don\(cqt want to use the \*(Aq~\(cq as first character, just comment or remove the second rewrite rule, and uncomment one of the following according to what you want\&.
871 Second, repositories found in \fB/pub/scm/\fR and \fB/var/git/\fR will be accessible through \fBhttp://git\&.example\&.org/scm/\fR and \fBhttp://git\&.example\&.org/var/\fR\&. You can add as many project roots as you want by adding rewrite rules like the third and the fourth\&.
872 .SS "PATH_INFO usage"
874 If you enable PATH_INFO usage in gitweb by putting
876 .if n \{\
877 .RS 4
880 $feature{\*(Aqpathinfo\*(Aq}{\*(Aqdefault\*(Aq} = [1];
882 .if n \{\
887 in your gitweb configuration file, it is possible to set up your server so that it consumes and produces URLs in the form
889 .if n \{\
890 .RS 4
893 http://git\&.example\&.com/project\&.git/shortlog/sometag
895 .if n \{\
899 i\&.e\&. without \fIgitweb\&.cgi\fR part, by using a configuration such as the following\&. This configuration assumes that \fB/var/www/gitweb\fR is the DocumentRoot of your webserver, contains the gitweb\&.cgi script and complementary static files (stylesheet, favicon, JavaScript):
901 .if n \{\
902 .RS 4
905 <VirtualHost *:80>
906         ServerAlias git\&.example\&.com
908         DocumentRoot /var/www/gitweb
910         <Directory /var/www/gitweb>
911                 Options ExecCGI
912                 AddHandler cgi\-script cgi
914                 DirectoryIndex gitweb\&.cgi
916                 RewriteEngine On
917                 RewriteCond %{REQUEST_FILENAME} !\-f
918                 RewriteCond %{REQUEST_FILENAME} !\-d
919                 RewriteRule ^\&.* /gitweb\&.cgi/$0 [L,PT]
920         </Directory>
921 </VirtualHost>
923 .if n \{\
928 The rewrite rule guarantees that existing static files will be properly served, whereas any other URL will be passed to gitweb as PATH_INFO parameter\&.
930 \fBNotice\fR that in this case you don\(cqt need special settings for \fB@stylesheets\fR, \fB$my_uri\fR and \fB$home_link\fR, but you lose "dumb client" access to your project \&.git dirs (described in "Single URL for gitweb and for fetching" section)\&. A possible workaround for the latter is the following: in your project root dir (e\&.g\&. \fB/pub/git\fR) have the projects named \fBwithout\fR a \&.git extension (e\&.g\&. \fB/pub/git/project\fR instead of \fB/pub/git/project\&.git\fR) and configure Apache as follows:
932 .if n \{\
933 .RS 4
936 <VirtualHost *:80>
937         ServerAlias git\&.example\&.com
939         DocumentRoot /var/www/gitweb
941         AliasMatch ^(/\&.*?)(\e\&.git)(/\&.*)?$ /pub/git$1$3
942         <Directory /var/www/gitweb>
943                 Options ExecCGI
944                 AddHandler cgi\-script cgi
946                 DirectoryIndex gitweb\&.cgi
948                 RewriteEngine On
949                 RewriteCond %{REQUEST_FILENAME} !\-f
950                 RewriteCond %{REQUEST_FILENAME} !\-d
951                 RewriteRule ^\&.* /gitweb\&.cgi/$0 [L,PT]
952         </Directory>
953 </VirtualHost>
955 .if n \{\
960 The additional AliasMatch makes it so that
962 .if n \{\
963 .RS 4
966 http://git\&.example\&.com/project\&.git
968 .if n \{\
972 will give raw access to the project\(cqs Git dir (so that the project can be cloned), while
974 .if n \{\
975 .RS 4
978 http://git\&.example\&.com/project
980 .if n \{\
984 will provide human\-friendly gitweb access\&.
986 This solution is not 100% bulletproof, in the sense that if some project has a named ref (branch, tag) starting with \fBgit/\fR, then paths such as
988 .if n \{\
989 .RS 4
992 http://git\&.example\&.com/project/command/abranch\&.\&.git/abranch
994 .if n \{\
998 will fail with a 404 error\&.
999 .SH "BUGS"
1001 Please report any bugs or feature requests to \m[blue]\fBgit@vger\&.kernel\&.org\fR\m[]\&\s-2\u[1]\d\s+2, putting "gitweb" in the subject of email\&.
1002 .SH "SEE ALSO"
1004 \fBgitweb.conf\fR(5), \fBgit-instaweb\fR(1)
1006 \fBgitweb/README\fR, \fBgitweb/INSTALL\fR
1007 .SH "GIT"
1009 Part of the \fBgit\fR(1) suite
1010 .SH "NOTES"
1011 .IP " 1." 4
1012 git@vger.kernel.org
1013 .RS 4
1014 \%mailto:git@vger.kernel.org