summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e70866f)
raw | patch | inline | side by side (parent: e70866f)
author | Martin Waitz <tali@admingilde.org> | |
Tue, 3 Oct 2006 08:03:28 +0000 (10:03 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 3 Oct 2006 08:09:56 +0000 (01:09 -0700) |
Add a small apache configuration which shows how to use apache
to put gitweb and GIT repositories at the same URL.
Signed-off-by: Martin Waitz <tali@admingilde.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
to put gitweb and GIT repositories at the same URL.
Signed-off-by: Martin Waitz <tali@admingilde.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
gitweb/README | patch | blob | history |
diff --git a/gitweb/README b/gitweb/README
index 27c6dac1436ca9def413430336f3f29d88247fcb..61c7ab5d4bbb770e50e89e2e5d0619ffda7e8577 100644 (file)
--- a/gitweb/README
+++ b/gitweb/README
GIT web Interface
+=================
The one working on:
http://www.kernel.org/git/
From the git version 1.4.0 gitweb is bundled with git.
-How to configure gitweb for your local system:
+How to configure gitweb for your local system
+---------------------------------------------
You can specify the following configuration variables when building GIT:
* GITWEB_SITENAME
environment variable will be loaded instead of the file
specified when gitweb.cgi was created.
+
+Webserver configuration
+-----------------------
+
+If you want to have one URL for both gitweb and your http://
+repositories, you can configure apache like this:
+
+<VirtualHost www:80>
+ ServerName git.domain.org
+ DocumentRoot /pub/git
+ RewriteEngine on
+ RewriteRule ^/(.*\.git/(?!/?(info|objects|refs)).*)?$ /cgi-bin/gitweb.cgi%{REQUEST_URI} [L,PT]
+</VirtualHost>
+
+The above configuration expects your public repositories to live under
+/pub/git and will serve them as http://git.domain.org/dir-under-pub-git,
+both as cloneable GIT URL and as browseable gitweb interface.
+If you then start your git-daemon with --base-path=/pub/git --export-all
+then you can even use the git:// URL with exactly the same path.
+
+
+
Originally written by:
Kay Sievers <kay.sievers@vrfy.org>