【发布时间】:2012-04-23 06:00:14
【问题描述】:
我正在通过 OpenSUSE(非虚拟主机)中的 Apache 在我的系统中配置 gitweb。但是,我收到以下错误:404 - No projects found。
/etc/gitweb.conf
# path to git projects (<project>.git)
$projectroot = "/home/zhijian/gitweb";
# directory to use for temp files
$git_temp = "/tmp";
# target of the home link on top of all pages
#$home_link = $my_uri || "/";
# html text to include at home page
$home_text = "/gitweb/static/indextext.html";
# file with project list; by default, simply scan the projectroot dir.
$projects_list = $projectroot;
# stylesheet to use
$stylesheet = "/gitweb/static/gitweb.css";
# logo to use
$logo = "/gitweb/static/git-logo.png";
# the 'favicon'
$favicon = "/gitweb/static/git-favicon.png";
/etc/apache2/conf.d/gitweb.conf
Alias /gitweb "/home/zhijian/gitweb"
<Directory "/home/zhijian/gitweb">
Options +Indexes +ExecCGI +FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
AddHandler cgi-script .cgi
DirectoryIndex gitweb.cgi
</Directory>
我在 gitweb 文件夹中添加了一个软链接来链接 gitweb.cgi 和 static 文件夹。 Apache 错误日志显示 gitweb.cgi: Can't opendir(/home/zhijian/gitweb): Permission denied,但 gitweb 文件夹的权限已设置为 755。有人知道可能导致此问题的原因吗?
【问题讨论】:
-
上层目录的权限是什么?尝试
su作为www(或您机器上的任何内容)用户并 cd 进入此目录 -
你的意思是我需要检查文件夹的用户?
-
用户需要对
refs/*拥有READ权限才能查看项目的gitweb。
标签: gitweb