サーバーで gitweb と gitolite を実行しています: http://git.jshawl.com/
git-http-backend
匿名の複製を許可するように を設定するのに問題があります。
私の vhosts ファイル ( /etc/apache2/extra/httpd-vhosts.conf
) は次のようになります。
<VirtualHost *:80>
DocumentRoot "/Users/git/repositories"
ServerName git.jshawl.com
<Directory "/Users/git/repositories">
Options ExecCGI +FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride All
order allow,deny
Allow from all
AddHandler cgi-script cgi
DirectoryIndex gitweb.cgi
</Directory>
<LocationMatch "^/.*/git-receive-pack$">
AuthType Basic
AuthName "Git Access"
Require group committers
</LocationMatch
SetEnv GIT_PROJECT_ROOT /Users/git/repositories
SetEnv GIT_HTTP_EXPORT_ALL
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/libexec/git-core/git-http-backend/$1
ScriptAlias / /Users/git/repositories/gitweb.cgi/
`
http://www.kernel.org/pub/software/scm/git/docs/git-http-backend.htmlの指示に従いましたが、一貫してその 502 エラーに直面しています。
私のApacheエラーログには次のように書かれています:[Fri Aug 24 19:29:32 2012] [error] [client 198.228.200.148] client denied by server configuration: /usr/libexec/git-core/git-http-backend
また、これをすべて追加すると、私のgitwebインストールが停止しました(以前はhttp://git.jshawl.comにありました)
私は何を間違っていますか?