http-backend: add GIT_PROJECT_ROOT environment var
Add a new environment variable, GIT_PROJECT_ROOT, to override the method of using PATH_TRANSLATED to find the git repository on disk. This makes it much easier to configure the web server, especially when the web server's DocumentRoot does not contain the git repositories, which is the usual case. Signed-off-by: Mark Lodato <lodatom@gmail.com> Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
556cfa3b6d
commit
917adc0360
@ -41,29 +41,24 @@ http.receivepack::
|
|||||||
|
|
||||||
URL TRANSLATION
|
URL TRANSLATION
|
||||||
---------------
|
---------------
|
||||||
'git-http-backend' relies on the invoking web server to perform
|
To determine the location of the repository on disk, 'git-http-backend'
|
||||||
URL to path translation, and store the repository path into the
|
concatenates the environment variables PATH_INFO, which is set
|
||||||
PATH_TRANSLATED environment variable. Most web servers will do
|
automatically by the web server, and GIT_PROJECT_ROOT, which must be set
|
||||||
this translation automatically, resolving the suffix after the
|
manually in the web server configuration. If GIT_PROJECT_ROOT is not
|
||||||
CGI name relative to the server's document root.
|
set, 'git-http-backend' reads PATH_TRANSLATED, which is also set
|
||||||
|
automatically by the web server.
|
||||||
|
|
||||||
EXAMPLES
|
EXAMPLES
|
||||||
--------
|
--------
|
||||||
|
|
||||||
Apache 2.x::
|
Apache 2.x::
|
||||||
To serve all Git repositories contained within the '/git/'
|
Ensure mod_cgi, mod_alias, and mod_env are enabled, set
|
||||||
subdirectory of the DocumentRoot, ensure mod_cgi and
|
GIT_PROJECT_ROOT (or DocumentRoot) appropriately, and
|
||||||
mod_alias are enabled, and create a ScriptAlias to the CGI:
|
create a ScriptAlias to the CGI:
|
||||||
+
|
+
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/git/
|
SetEnv GIT_PROJECT_ROOT /var/www/git
|
||||||
|
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/
|
||||||
<Directory /usr/libexec/git-core>
|
|
||||||
Options None
|
|
||||||
</Directory>
|
|
||||||
<Files /usr/libexec/git-core/git-http-backend>
|
|
||||||
Options ExecCGI
|
|
||||||
</Files>
|
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
+
|
+
|
||||||
To enable anonymous read access but authenticated write access,
|
To enable anonymous read access but authenticated write access,
|
||||||
@ -78,16 +73,16 @@ require authorization with a LocationMatch directive:
|
|||||||
</LocationMatch>
|
</LocationMatch>
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
+
|
+
|
||||||
To require authentication for both reads and writes, use a Directory
|
To require authentication for both reads and writes, use a Location
|
||||||
directive around the repository, or one of its parent directories:
|
directive around the repository, or one of its parent directories:
|
||||||
+
|
+
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
<Directory /var/www/git/private>
|
<Location /git/private>
|
||||||
AuthType Basic
|
AuthType Basic
|
||||||
AuthName "Private Git Access"
|
AuthName "Private Git Access"
|
||||||
Require group committers
|
Require group committers
|
||||||
...
|
...
|
||||||
</Directory>
|
</Location>
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
|
|
||||||
Accelerated static Apache 2.x::
|
Accelerated static Apache 2.x::
|
||||||
@ -97,9 +92,9 @@ Accelerated static Apache 2.x::
|
|||||||
file contents from the file system directly to the network:
|
file contents from the file system directly to the network:
|
||||||
+
|
+
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
DocumentRoot /var/www
|
SetEnv GIT_PROJECT_ROOT /var/www/git
|
||||||
|
|
||||||
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/git/
|
ScriptAlias /git/ /usr/libexec/git-core/git-http-backend/
|
||||||
Alias /git_static/ /var/www/git/
|
Alias /git_static/ /var/www/git/
|
||||||
|
|
||||||
RewriteEngine on
|
RewriteEngine on
|
||||||
@ -114,7 +109,7 @@ ENVIRONMENT
|
|||||||
'git-http-backend' relies upon the CGI environment variables set
|
'git-http-backend' relies upon the CGI environment variables set
|
||||||
by the invoking web server, including:
|
by the invoking web server, including:
|
||||||
|
|
||||||
* PATH_TRANSLATED
|
* PATH_INFO (if GIT_PROJECT_ROOT is set, otherwise PATH_TRANSLATED)
|
||||||
* REMOTE_USER
|
* REMOTE_USER
|
||||||
* REMOTE_ADDR
|
* REMOTE_ADDR
|
||||||
* CONTENT_TYPE
|
* CONTENT_TYPE
|
||||||
|
@ -528,6 +528,26 @@ static NORETURN void die_webcgi(const char *err, va_list params)
|
|||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char* getdir(void)
|
||||||
|
{
|
||||||
|
struct strbuf buf = STRBUF_INIT;
|
||||||
|
char *pathinfo = getenv("PATH_INFO");
|
||||||
|
char *root = getenv("GIT_PROJECT_ROOT");
|
||||||
|
char *path = getenv("PATH_TRANSLATED");
|
||||||
|
|
||||||
|
if (root && *root) {
|
||||||
|
if (!pathinfo || !*pathinfo)
|
||||||
|
die("GIT_PROJECT_ROOT is set but PATH_INFO is not");
|
||||||
|
strbuf_addstr(&buf, root);
|
||||||
|
strbuf_addstr(&buf, pathinfo);
|
||||||
|
return strbuf_detach(&buf, NULL);
|
||||||
|
} else if (path && *path) {
|
||||||
|
return xstrdup(path);
|
||||||
|
} else
|
||||||
|
die("No GIT_PROJECT_ROOT or PATH_TRANSLATED from server");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static struct service_cmd {
|
static struct service_cmd {
|
||||||
const char *method;
|
const char *method;
|
||||||
const char *pattern;
|
const char *pattern;
|
||||||
@ -549,7 +569,7 @@ static struct service_cmd {
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
char *method = getenv("REQUEST_METHOD");
|
char *method = getenv("REQUEST_METHOD");
|
||||||
char *dir = getenv("PATH_TRANSLATED");
|
char *dir;
|
||||||
struct service_cmd *cmd = NULL;
|
struct service_cmd *cmd = NULL;
|
||||||
char *cmd_arg = NULL;
|
char *cmd_arg = NULL;
|
||||||
int i;
|
int i;
|
||||||
@ -561,8 +581,7 @@ int main(int argc, char **argv)
|
|||||||
die("No REQUEST_METHOD from server");
|
die("No REQUEST_METHOD from server");
|
||||||
if (!strcmp(method, "HEAD"))
|
if (!strcmp(method, "HEAD"))
|
||||||
method = "GET";
|
method = "GET";
|
||||||
if (!dir)
|
dir = getdir();
|
||||||
die("No PATH_TRANSLATED from server");
|
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(services); i++) {
|
for (i = 0; i < ARRAY_SIZE(services); i++) {
|
||||||
struct service_cmd *c = &services[i];
|
struct service_cmd *c = &services[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user