Reputation: 1
I am trying to get GitWeb work on newly installed system. I have already updated the system and installed git and lighttpd. But when I am running git instaweb everything that I see is
(configfile.c.426) Warning: mod_auth should be listed in server.modules before dynamic backends such as mod_cgi
Gtk-Message: Failed to load module "canberra-gtk-module"
and endlessly loading page in the firefox.
Is there a way to somehow solve this problem ?
Upvotes: 0
Views: 991
Reputation: 11
git-instaweb is a simple script to set up gitweb and a web server for browsing the local repository. You need to install gitweb(web frontend to Git repositories) to your system.
For example(Ubuntu): sudo apt-get install gitweb
Upvotes: 1