2

我试图使用 git-http-backend 和 apache 2.4 设置一个 git 服务器,我发现这个问题是关于同一件事的,这很有帮助,但我仍然到了我被卡住的地步。

我已经在 Ubuntu 16.04 上安装了 git 和 apache2 并使用添加了所需的模块

sudo a2enmod cgi alias env

然后在中添加以下代码段/etc/apache2/apache2.conf

<VirtualHost *:80>
    SetEnv GIT_PROJECT_ROOT /var/www/git
    SetEnv GIT_HTTP_EXPORT_ALL
    SetEnv REMOTE_USER=$REDIRECT_REMOTE_USER
    ScriptAliasMatch \
      "(?x)^/(.*/(HEAD | \
          info/refs | \
          objects/(info/[^/]+ | \
          [0-9a-f]{2}/[0-9a-f]{38} | \
          pack/pack-[0-9a-f]{40}\.(pack|idx)) | \
          git-(upload|receive)-pack))$" \
      "/usr/lib/git-core/git-http-backend/$1"
    Alias /git /var/www/git
    <Directory /usr/lib/git-core>
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        AllowOverride None
        Require all granted
    </Directory>
</VirtualHost>

请注意,这/var/www/git是我打算去的地方,并运行

find / -name git-http-backend节目/usr/lib/git-core/git-http-backend

接下来,/var/www/git/我在里面创建了一个目录myrepo.git并将其设置为:

sudo git init --bare --shared
sudo cp hooks/post-update.sample hooks/post-update
sudo git update-server-info

接下来,我必须将目录的所有权更改为 apache2 所有者(我告诉过)。运行ps aux | egrep '(apache|httpd)'返回以下内容:

root 3087 0.0 0.4 73688  4928 ? Ss 02:37 0:00 /usr/sbin/apache2 -k start
www-data 3455 0.0 0.5 362836  5852 ? Sl 03:13 0:00 /usr/sbin/apache2 -k start
www-data 3456 0.0 0.5 362836  5852 ? Sl 03:13 0:00 /usr/sbin/apache2 -k start
git 3531 0.0 0.0 14512 932 pts/1 S+ 03:19 0:00 grep -E --color=auto (apache|httpd)

现在我不确定,因为它看起来两者rootwww-data在运行,但我目前决定将所有权设置为 www-data (也许它应该是 root?)。www-data的组也是www-data(我认为)

$ id www-data
uid=33(www-data) gid=33(www-data) groups=33(www-data)

所以我用它来设置所有权:

sudo chown -R www-data:www-data .

我似乎还记得读过整个路径必须属于 apache 用户,所以我设置了好的衡量标准

sudo chown -R www-data:www-data /var/www

现在从我的本地机器我试图克隆 myrepo:

git clone http://<ip-address>/myrepo.git

我得到了错误:

fatal: unable to access 'http://<ip-address>/myrepo.git/': The requested URL returned error: 503

谁能看到我做错了什么?

4

1 回答 1

0
Alias /git /var/www/git

这应该意味着您的网址应该包含 /git :

git clone http://<ip-address>/git/myrepo.git

我在这个Apache 配置中没有看到这样的别名

于 2016-12-02T05:46:57.770 回答