我想将gitweb与apache服务器一起使用,但是当我完成配置时,it.i请求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
中创建快捷方式。但我无法得到我想要的内容。