Ubuntu 13.10 gitweb 安装:未找到

Ubuntu 13.10 gitweb 安装:未找到

我正在尝试使用 gitweb,但无法让它工作。

在 Ubuntu Server 13.10 (saucy) 上,我运行了apt-get update,然后运行了apt-get install gitweb

...
Unpacking gitweb (from .../gitweb_1%3a1.8.3.2-1_all.deb) ... Selecting previously unselected package libhttp-date-perl. Unpacking libhttp-date-perl (from .../libhttp-date-perl_6.02-1_all.deb) ... Processing triggers for man-db ... Setting up gitweb (1:1.8.3.2-1) ...
* Reloading web server apache2                                                                                                                                                                                                               * Setting up libhttp-date-perl (6.02-1) ...
#

该软件包确实生成了安装所需的正确文件:

# cat /etc/apache2/conf.d/gitweb
Alias /gitweb /usr/share/gitweb

<Directory /usr/share/gitweb>
  Options FollowSymLinks +ExecCGI
  AddHandler cgi-script .cgi
</Directory>

文件 /etc/gitweb.conf 也被生成。

但是,即使在apache2ctrl restart(已经由 完成apt-get,但无论如何) 之后,我仍然无法访问http://localhost/gitweb。来自 access.log:

10.0.10.175 - - [29/Dec/2013:15:14:19 +0100] "GET /gitweb HTTP/1.1" 404 495 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
127.0.0.1 - - [29/Dec/2013:15:18:27 +0100] "GET /gitweb/ HTTP/1.1" 404 495 "-" "ELinks/0.12~pre6-1ubuntu1 (textmode; Ubuntu; Linux 3.11.0-14-generic x86_64; 237x71-2)"

我在服务器上托管了 Mediawiki 和 phppgadmin(也使用 apt-get 安装),它们运行起来没有问题。

有什么线索吗?

答案1

OK 找到解决方案的提示http://lintian.debian.org/tags/apache2-reverse-dependency-uses-obsolete-directory.html

显然 gitweb 包正在使用 -for Apache 2.4-过时的 /etc/apache2/conf.d/目录。重命名/移动到正确的目录:

# mv /etc/apache2/conf.d/gitweb /etc/apache2/conf-available/gitweb.conf
# a2enconf
Your choices are: charset gitweb javascript-common localized-error-pages mediawiki other-vhosts-access-log security serve-cgi-bin
Which conf(s) do you want to enable (wildcards ok)?
gitweb
Enabling conf gitweb.
To activate the new configuration, you need to run:
  service apache2 reload
# apache2ctl restart
AH00526: Syntax error on line 4 of /etc/apache2/conf-enabled/gitweb.conf:
Either all Options must start with + or -, or no Option may.
Action 'restart' failed.
The Apache error log may have more information.
# vi /etc/apache2/conf-enabled/gitweb.conf
# apache2ctl restart

显然,FollowSymlinks 前面必须有一个“+”。更改该部分后,安装即可正常进行。

相关内容