Hello,
By default git instaweb is expecting lighttpd web server, whereas on OSX Leopard server apache2 is the default one.
Adding the following to .git/config :
[instaweb]
local = true
httpd = apache2 -f
port = 4321
modulepath = /usr/libexec/apache2
and running 'git instaweb
' results in :
apache2 not found.
Install apache2 or use --httpd to specify another httpd daemon.
How should I set up .git/config
to have it use my default web server ?
Thanks