Hi,
I just installed Gitlist 0.2 in my server and there is this strange error that I cannot figure out how to fix it. The server is running Ubuntu Server 12.04 and Apache 2 + PHP 5.3.10. I extracted Gitlist at /var/www/gitlist, copied/modified the config.ini file, etc. The home page renders perfectly, listing all available repositories and with all css styles, etc. When I click on a repository (i.e. test.git), I get a 404 Not Found. The Apache's error log shows:
File does not exist: /var/www/gitlist/test.git, referer:
https://my_server/gitlist/I guess the repositories are not supposed to be at /var/www/gitlist, instead they should be found at whatever path is configured in the "repositories" setting, is that correct? By the way, this is my config.ini file:
[git]
client = '/usr/bin/git' ; Your git executable path
repositories = '/home/git' ; Path to your repositories
; You can hide repositories from GitList, just copy this for each repository you want to hide
; hidden[] = '/var/www/projects/BetaTest'
[app]
baseurl = '/gitlist' ; Base URL of the application
; If you need to specify custom filetypes for certain extensions, do this here
[filetypes]
; extension = type
; dist = xml
Do you guys know what's up? I tried to look at the source code but I really suck at PHP.
Célio