我只是安装gitlist来关注我的git repos,当我启动localhost / gitlist时我得到了那个页面:
get('date', 'timezone')) { date_default_timezone_set($config->get('date', 'timezone')); } $app = require 'boot.php'; $app->run();
我无法解决问题。有人可以帮我解决一下吗?
答案 0 :(得分:1)
我有同样的问题。我能够用这种方式解决它:
1-确保已正确安装php7并正确启用/配置了apache2模块。我使用ubuntu,对我来说就足够了:
sudo apt-get -y install php7.0 libapache2-mod-php7.0
2-确保您的gitlist文件夹具有适合Web用户的权限。我使用apache2(.4):
sudo chown -R www-data:www-data <path-to-gitlist>
3-同时检查你的gitlist config.ini
文件是否指向包含git repos的文件夹,而不是git repos:
repositories[]= '/home/user/repositories'
4-重启apache服务:
systemctl restart apache2
我希望这会有所帮助。