在基于 debian 的系统上为 git-http-backend 配置 nginx

在基于 debian 的系统上为 git-http-backend 配置 nginx

我在使用 Ubuntu 13.04 机器上的 nginx 服务器让 git-http-backend 工作时遇到了麻烦。之前尝试过使用 Debian 7,但结果类似。基本上我遵循http://weininger.net/configuration-of-nginx-for-gitweb-and-git-http-backend/但忽略了有关 gitweb 的任何内容。

我做了以下事情:

使用以下方式安装 nginx、git、git-core 和 fcgiwrap:

apt-get install git git-core nginx fcgiwrap

在 /var/git/test.git 创建了一个裸仓库,并将其所有权更改为 www-data:

mkdir -p /var/git/test.git
cd /var/git/test.git
git init --bare
git update-server-info
chown -R www-data:www-data /var/git

将 /etc/nginx/sites-enabled/default 替换为

server {
        listen 80;

        server_name localhost;

        location / {
                root /var/git;

                fastcgi_pass unix:/var/run/fcgiwrap.socket;
                fastcgi_param SCRIPT_FILENAME   /usr/lib/git-core/git-http-backend;
                fastcgi_param PATH_INFO         $uri;
                fastcgi_param GIT_PROJECT_ROOT  /var/git;
                fastcgi_param GIT_HTTP_EXPORT_ALL "";
                include /etc/nginx/fastcgi_params;
        }
}

当做

GIT_CURL_VERBOSE=1 git clone http://localhost/test.git

它打印:

Klone nach 'test'...
* Couldn't find host localhost in the .netrc file; using defaults
* About to connect() to localhost port 80 (#0)
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 80 (#0)
> GET /test.git/info/refs?service=git-upload-pack HTTP/1.1
User-Agent: git/1.8.1.2
Host: localhost
Accept: */*
Accept-Encoding: gzip
Pragma: no-cache

* The requested URL returned error: 500 Internal Server Error
* Closing connection 0
error: The requested URL returned error: 500 Internal Server Error while accessing http://localhost/test.git/info/refs?service=git-upload-pack
fatal: HTTP request failed

/var/log/nginx/error.log 不包含此请求的任何条目。我不确定 git-http-backend 是否写入了日志文件,但找不到。

您知道这个设置有什么问题吗?您知道如何获取有关 500 错误的更多信息/日志吗?

答案1

由于您收到 500 错误:

500 Internal Server Error while accessing http://localhost/test.git/info/refs?service=git-upload-pack

尝试在 Web 浏览器中访问该地址,同时查看 nginx 错误日志。您可以通过以下方式“交互式”查看错误日志:

tail -f /var/log/nginx/error.log

相关内容