我正在尝试使用git-http-backend和apache 2.4设置一个git服务器我发现this question关于同样有用的东西,但是我仍然达到了我的目标。我被卡住了。
我在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所有者(Im告诉)。正在运行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)
现在我不确定,因为看起来root
和www-data
都在运行,但我现在决定将所有权设置为www-data(也许应该是根?)。 www-data&group;也是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
有人能看出我做错了吗?
答案 0 :(得分:0)
Alias /git /var/www/git
这应该意味着你的网址应该包含/ git:
git clone http://<ip-address>/git/myrepo.git
中看不到这样的别名