vote up 5 vote down star
3

running git instaweb in my repository opens a page that says "403 Forbidden - No projects found". What am I missing?

flag

45% accept rate

3 Answers

vote up 0 vote down

I don't know Git about Git, but you're probably missing the ability to execute on the directory in question, chmod +X it.

link|flag
I tried it just to be sure, but it doesn't appear to be correct in this case: git instaweb runs lighttpd as the active user. I definitely have full permissions to the repository. – jes5199 Sep 22 '08 at 0:34
Well, I have a similar issue on my website american-data.com/pub works ok and american-data.com/pub gives the 403 Error I was getting that for a few reasons, problems following symlinks, and .htaccess files and problems with httpd.conf to name a few. – Peter Turner Sep 22 '08 at 0:57
vote up 9 vote down check

looks like the debian install of git sets $projectroot globally in a way that confuses instaweb. I removed the $projectroot line from /etc/gitweb.conf and the error went away.

link|flag
@jes5199's fix also works with Ubuntu (9.04), I guess because debian is upstream. – Matt Curtis Dec 7 at 0:36
vote up 1 vote down

check the git-web cgi (the perl), see the directory of the projectroot is same as your currect setting. there are some settings that not in gitweb.conf

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.