我想将 gitweb 与 apache 服务器一起使用,但是当我完成配置时。我请求 gitweb 并且总是有一个404 - No projects found
.
我的 git 存储库是,/home/git/repo
我改变/etc/gitweb.conf
和$projectroot = "/var/www/git";
改变/etc/httpd/conf.d/git.conf
Alias /git /var/www/git
<Directory /var/www/git>
Allow from all
AllowOverride all
Order allow,deny
Options +ExecCGI
AddHandler cgi-script .cgi
DirectoryIndex gitweb.cgi
SetEnv GITWEB_CONFIG /etc/gitweb.conf
Dav On
RewriteEngine Off
</Directory>
然后运行ln -s /home/git/repo/test_repo.git /var/www/git/
在.中创建一个快捷方式,/var/www/git
但我无法得到我想要的。