git-instaweb.shon commit t6036: criss-cross + rename/rename(1to2)/add-dest + simple modify (b630b81)
   1#!/bin/sh
   2#
   3# Copyright (c) 2006 Eric Wong
   4#
   5
   6PERL='@@PERL@@'
   7OPTIONS_KEEPDASHDASH=
   8OPTIONS_SPEC="\
   9git instaweb [options] (--start | --stop | --restart)
  10--
  11l,local        only bind on 127.0.0.1
  12p,port=        the port to bind to
  13d,httpd=       the command to launch
  14b,browser=     the browser to launch
  15m,module-path= the module path (only needed for apache2)
  16 Action
  17stop           stop the web server
  18start          start the web server
  19restart        restart the web server
  20"
  21
  22. git-sh-setup
  23
  24fqgitdir="$GIT_DIR"
  25local="$(git config --bool --get instaweb.local)"
  26httpd="$(git config --get instaweb.httpd)"
  27root="$(git config --get instaweb.gitwebdir)"
  28port=$(git config --get instaweb.port)
  29module_path="$(git config --get instaweb.modulepath)"
  30
  31conf="$GIT_DIR/gitweb/httpd.conf"
  32
  33# Defaults:
  34
  35# if installed, it doesn't need further configuration (module_path)
  36test -z "$httpd" && httpd='lighttpd -f'
  37
  38# Default is @@GITWEBDIR@@
  39test -z "$root" && root='@@GITWEBDIR@@'
  40
  41# any untaken local port will do...
  42test -z "$port" && port=1234
  43
  44resolve_full_httpd () {
  45        case "$httpd" in
  46        *apache2*|*lighttpd*|*httpd*)
  47                # yes, *httpd* covers *lighttpd* above, but it is there for clarity
  48                # ensure that the apache2/lighttpd command ends with "-f"
  49                if ! echo "$httpd" | sane_grep -- '-f *$' >/dev/null 2>&1
  50                then
  51                        httpd="$httpd -f"
  52                fi
  53                ;;
  54        *plackup*)
  55                # server is started by running via generated gitweb.psgi in $fqgitdir/gitweb
  56                full_httpd="$fqgitdir/gitweb/gitweb.psgi"
  57                httpd_only="${httpd%% *}" # cut on first space
  58                return
  59                ;;
  60        *webrick*)
  61                # server is started by running via generated webrick.rb in
  62                # $fqgitdir/gitweb
  63                full_httpd="$fqgitdir/gitweb/webrick.rb"
  64                httpd_only="${httpd%% *}" # cut on first space
  65                return
  66                ;;
  67        esac
  68
  69        httpd_only="$(echo $httpd | cut -f1 -d' ')"
  70        if case "$httpd_only" in /*) : ;; *) which $httpd_only >/dev/null 2>&1;; esac
  71        then
  72                full_httpd=$httpd
  73        else
  74                # many httpds are installed in /usr/sbin or /usr/local/sbin
  75                # these days and those are not in most users $PATHs
  76                # in addition, we may have generated a server script
  77                # in $fqgitdir/gitweb.
  78                for i in /usr/local/sbin /usr/sbin "$root" "$fqgitdir/gitweb"
  79                do
  80                        if test -x "$i/$httpd_only"
  81                        then
  82                                full_httpd=$i/$httpd
  83                                return
  84                        fi
  85                done
  86
  87                echo >&2 "$httpd_only not found. Install $httpd_only or use" \
  88                     "--httpd to specify another httpd daemon."
  89                exit 1
  90        fi
  91}
  92
  93start_httpd () {
  94        if test -f "$fqgitdir/pid"; then
  95                say "Instance already running. Restarting..."
  96                stop_httpd
  97        fi
  98
  99        # here $httpd should have a meaningful value
 100        resolve_full_httpd
 101
 102        # don't quote $full_httpd, there can be arguments to it (-f)
 103        case "$httpd" in
 104        *mongoose*|*plackup*)
 105                #These servers don't have a daemon mode so we'll have to fork it
 106                $full_httpd "$fqgitdir/gitweb/httpd.conf" &
 107                #Save the pid before doing anything else (we'll print it later)
 108                pid=$!
 109
 110                if test $? != 0; then
 111                        echo "Could not execute http daemon $httpd."
 112                        exit 1
 113                fi
 114
 115                cat > "$fqgitdir/pid" <<EOF
 116$pid
 117EOF
 118                ;;
 119        *)
 120                $full_httpd "$fqgitdir/gitweb/httpd.conf"
 121                if test $? != 0; then
 122                        echo "Could not execute http daemon $httpd."
 123                        exit 1
 124                fi
 125                ;;
 126        esac
 127}
 128
 129stop_httpd () {
 130        test -f "$fqgitdir/pid" && kill $(cat "$fqgitdir/pid")
 131        rm -f "$fqgitdir/pid"
 132}
 133
 134httpd_is_ready () {
 135        "$PERL" -MIO::Socket::INET -e "
 136local \$| = 1; # turn on autoflush
 137exit if (IO::Socket::INET->new('127.0.0.1:$port'));
 138print 'Waiting for \'$httpd\' to start ..';
 139do {
 140        print '.';
 141        sleep(1);
 142} until (IO::Socket::INET->new('127.0.0.1:$port'));
 143print qq! (done)\n!;
 144"
 145}
 146
 147while test $# != 0
 148do
 149        case "$1" in
 150        --stop|stop)
 151                stop_httpd
 152                exit 0
 153                ;;
 154        --start|start)
 155                start_httpd
 156                exit 0
 157                ;;
 158        --restart|restart)
 159                stop_httpd
 160                start_httpd
 161                exit 0
 162                ;;
 163        -l|--local)
 164                local=true
 165                ;;
 166        -d|--httpd)
 167                shift
 168                httpd="$1"
 169                ;;
 170        -b|--browser)
 171                shift
 172                browser="$1"
 173                ;;
 174        -p|--port)
 175                shift
 176                port="$1"
 177                ;;
 178        -m|--module-path)
 179                shift
 180                module_path="$1"
 181                ;;
 182        --)
 183                ;;
 184        *)
 185                usage
 186                ;;
 187        esac
 188        shift
 189done
 190
 191mkdir -p "$GIT_DIR/gitweb/tmp"
 192GIT_EXEC_PATH="$(git --exec-path)"
 193GIT_DIR="$fqgitdir"
 194GITWEB_CONFIG="$fqgitdir/gitweb/gitweb_config.perl"
 195export GIT_EXEC_PATH GIT_DIR GITWEB_CONFIG
 196
 197webrick_conf () {
 198        # webrick seems to have no way of passing arbitrary environment
 199        # variables to the underlying CGI executable, so we wrap the
 200        # actual gitweb.cgi using a shell script to force it
 201  wrapper="$fqgitdir/gitweb/$httpd/wrapper.sh"
 202        cat > "$wrapper" <<EOF
 203#!/bin/sh
 204# we use this shell script wrapper around the real gitweb.cgi since
 205# there appears to be no other way to pass arbitrary environment variables
 206# into the CGI process
 207GIT_EXEC_PATH=$GIT_EXEC_PATH GIT_DIR=$GIT_DIR GITWEB_CONFIG=$GITWEB_CONFIG
 208export GIT_EXEC_PATH GIT_DIR GITWEB_CONFIG
 209exec $root/gitweb.cgi
 210EOF
 211        chmod +x "$wrapper"
 212
 213        # This assumes _ruby_ is in the user's $PATH. that's _one_
 214        # portable way to run ruby, which could be installed anywhere, really.
 215        # generate a standalone server script in $fqgitdir/gitweb.
 216        cat >"$fqgitdir/gitweb/$httpd.rb" <<EOF
 217#!/usr/bin/env ruby
 218require 'webrick'
 219require 'logger'
 220options = {
 221  :Port => $port,
 222  :DocumentRoot => "$root",
 223  :Logger => Logger.new('$fqgitdir/gitweb/error.log'),
 224  :AccessLog => [
 225    [ Logger.new('$fqgitdir/gitweb/access.log'),
 226      WEBrick::AccessLog::COMBINED_LOG_FORMAT ]
 227  ],
 228  :DirectoryIndex => ["gitweb.cgi"],
 229  :CGIInterpreter => "$wrapper",
 230  :StartCallback => lambda do
 231    File.open("$fqgitdir/pid", "w") { |f| f.puts Process.pid }
 232  end,
 233  :ServerType => WEBrick::Daemon,
 234}
 235options[:BindAddress] = '127.0.0.1' if "$local" == "true"
 236server = WEBrick::HTTPServer.new(options)
 237['INT', 'TERM'].each do |signal|
 238  trap(signal) {server.shutdown}
 239end
 240server.start
 241EOF
 242        chmod +x "$fqgitdir/gitweb/$httpd.rb"
 243        # configuration is embedded in server script file, webrick.rb
 244        rm -f "$conf"
 245}
 246
 247lighttpd_conf () {
 248        cat > "$conf" <<EOF
 249server.document-root = "$root"
 250server.port = $port
 251server.modules = ( "mod_setenv", "mod_cgi" )
 252server.indexfiles = ( "gitweb.cgi" )
 253server.pid-file = "$fqgitdir/pid"
 254server.errorlog = "$fqgitdir/gitweb/$httpd_only/error.log"
 255
 256# to enable, add "mod_access", "mod_accesslog" to server.modules
 257# variable above and uncomment this
 258#accesslog.filename = "$fqgitdir/gitweb/$httpd_only/access.log"
 259
 260setenv.add-environment = ( "PATH" => env.PATH, "GITWEB_CONFIG" => env.GITWEB_CONFIG )
 261
 262cgi.assign = ( ".cgi" => "" )
 263
 264# mimetype mapping
 265mimetype.assign             = (
 266  ".pdf"          =>      "application/pdf",
 267  ".sig"          =>      "application/pgp-signature",
 268  ".spl"          =>      "application/futuresplash",
 269  ".class"        =>      "application/octet-stream",
 270  ".ps"           =>      "application/postscript",
 271  ".torrent"      =>      "application/x-bittorrent",
 272  ".dvi"          =>      "application/x-dvi",
 273  ".gz"           =>      "application/x-gzip",
 274  ".pac"          =>      "application/x-ns-proxy-autoconfig",
 275  ".swf"          =>      "application/x-shockwave-flash",
 276  ".tar.gz"       =>      "application/x-tgz",
 277  ".tgz"          =>      "application/x-tgz",
 278  ".tar"          =>      "application/x-tar",
 279  ".zip"          =>      "application/zip",
 280  ".mp3"          =>      "audio/mpeg",
 281  ".m3u"          =>      "audio/x-mpegurl",
 282  ".wma"          =>      "audio/x-ms-wma",
 283  ".wax"          =>      "audio/x-ms-wax",
 284  ".ogg"          =>      "application/ogg",
 285  ".wav"          =>      "audio/x-wav",
 286  ".gif"          =>      "image/gif",
 287  ".jpg"          =>      "image/jpeg",
 288  ".jpeg"         =>      "image/jpeg",
 289  ".png"          =>      "image/png",
 290  ".xbm"          =>      "image/x-xbitmap",
 291  ".xpm"          =>      "image/x-xpixmap",
 292  ".xwd"          =>      "image/x-xwindowdump",
 293  ".css"          =>      "text/css",
 294  ".html"         =>      "text/html",
 295  ".htm"          =>      "text/html",
 296  ".js"           =>      "text/javascript",
 297  ".asc"          =>      "text/plain",
 298  ".c"            =>      "text/plain",
 299  ".cpp"          =>      "text/plain",
 300  ".log"          =>      "text/plain",
 301  ".conf"         =>      "text/plain",
 302  ".text"         =>      "text/plain",
 303  ".txt"          =>      "text/plain",
 304  ".dtd"          =>      "text/xml",
 305  ".xml"          =>      "text/xml",
 306  ".mpeg"         =>      "video/mpeg",
 307  ".mpg"          =>      "video/mpeg",
 308  ".mov"          =>      "video/quicktime",
 309  ".qt"           =>      "video/quicktime",
 310  ".avi"          =>      "video/x-msvideo",
 311  ".asf"          =>      "video/x-ms-asf",
 312  ".asx"          =>      "video/x-ms-asf",
 313  ".wmv"          =>      "video/x-ms-wmv",
 314  ".bz2"          =>      "application/x-bzip",
 315  ".tbz"          =>      "application/x-bzip-compressed-tar",
 316  ".tar.bz2"      =>      "application/x-bzip-compressed-tar",
 317  ""              =>      "text/plain"
 318 )
 319EOF
 320        test x"$local" = xtrue && echo 'server.bind = "127.0.0.1"' >> "$conf"
 321}
 322
 323apache2_conf () {
 324        if test -z "$module_path"
 325        then
 326                test -d "/usr/lib/httpd/modules" &&
 327                        module_path="/usr/lib/httpd/modules"
 328                test -d "/usr/lib/apache2/modules" &&
 329                        module_path="/usr/lib/apache2/modules"
 330        fi
 331        bind=
 332        test x"$local" = xtrue && bind='127.0.0.1:'
 333        echo 'text/css css' > "$fqgitdir/mime.types"
 334        cat > "$conf" <<EOF
 335ServerName "git-instaweb"
 336ServerRoot "$root"
 337DocumentRoot "$root"
 338ErrorLog "$fqgitdir/gitweb/$httpd_only/error.log"
 339CustomLog "$fqgitdir/gitweb/$httpd_only/access.log" combined
 340PidFile "$fqgitdir/pid"
 341Listen $bind$port
 342EOF
 343
 344        for mod in mime dir env log_config
 345        do
 346                if test -e $module_path/mod_${mod}.so
 347                then
 348                        echo "LoadModule ${mod}_module " \
 349                             "$module_path/mod_${mod}.so" >> "$conf"
 350                fi
 351        done
 352        cat >> "$conf" <<EOF
 353TypesConfig "$fqgitdir/mime.types"
 354DirectoryIndex gitweb.cgi
 355EOF
 356
 357        # check to see if Dennis Stosberg's mod_perl compatibility patch
 358        # (<20060621130708.Gcbc6e5c@leonov.stosberg.net>) has been applied
 359        if test -f "$module_path/mod_perl.so" &&
 360           sane_grep 'MOD_PERL' "$root/gitweb.cgi" >/dev/null
 361        then
 362                # favor mod_perl if available
 363                cat >> "$conf" <<EOF
 364LoadModule perl_module $module_path/mod_perl.so
 365PerlPassEnv GIT_DIR
 366PerlPassEnv GIT_EXEC_PATH
 367PerlPassEnv GITWEB_CONFIG
 368<Location /gitweb.cgi>
 369        SetHandler perl-script
 370        PerlResponseHandler ModPerl::Registry
 371        PerlOptions +ParseHeaders
 372        Options +ExecCGI
 373</Location>
 374EOF
 375        else
 376                # plain-old CGI
 377                resolve_full_httpd
 378                list_mods=$(echo "$full_httpd" | sed 's/-f$/-l/')
 379                $list_mods | sane_grep 'mod_cgi\.c' >/dev/null 2>&1 || \
 380                if test -f "$module_path/mod_cgi.so"
 381                then
 382                        echo "LoadModule cgi_module $module_path/mod_cgi.so" >> "$conf"
 383                else
 384                        $list_mods | grep 'mod_cgid\.c' >/dev/null 2>&1 || \
 385                        if test -f "$module_path/mod_cgid.so"
 386                        then
 387                                echo "LoadModule cgid_module $module_path/mod_cgid.so" \
 388                                        >> "$conf"
 389                        else
 390                                echo "You have no CGI support!"
 391                                exit 2
 392                        fi
 393                        echo "ScriptSock logs/gitweb.sock" >> "$conf"
 394                fi
 395                cat >> "$conf" <<EOF
 396PassEnv GIT_DIR
 397PassEnv GIT_EXEC_PATH
 398PassEnv GITWEB_CONFIG
 399AddHandler cgi-script .cgi
 400<Location /gitweb.cgi>
 401        Options +ExecCGI
 402</Location>
 403EOF
 404        fi
 405}
 406
 407mongoose_conf() {
 408        cat > "$conf" <<EOF
 409# Mongoose web server configuration file.
 410# Lines starting with '#' and empty lines are ignored.
 411# For detailed description of every option, visit
 412# http://code.google.com/p/mongoose/wiki/MongooseManual
 413
 414root            $root
 415ports           $port
 416index_files     gitweb.cgi
 417#ssl_cert       $fqgitdir/gitweb/ssl_cert.pem
 418error_log       $fqgitdir/gitweb/$httpd_only/error.log
 419access_log      $fqgitdir/gitweb/$httpd_only/access.log
 420
 421#cgi setup
 422cgi_env         PATH=$PATH,GIT_DIR=$GIT_DIR,GIT_EXEC_PATH=$GIT_EXEC_PATH,GITWEB_CONFIG=$GITWEB_CONFIG
 423cgi_interp      $PERL
 424cgi_ext         cgi,pl
 425
 426# mimetype mapping
 427mime_types      .gz=application/x-gzip,.tar.gz=application/x-tgz,.tgz=application/x-tgz,.tar=application/x-tar,.zip=application/zip,.gif=image/gif,.jpg=image/jpeg,.jpeg=image/jpeg,.png=image/png,.css=text/css,.html=text/html,.htm=text/html,.js=text/javascript,.c=text/plain,.cpp=text/plain,.log=text/plain,.conf=text/plain,.text=text/plain,.txt=text/plain,.dtd=text/xml,.bz2=application/x-bzip,.tbz=application/x-bzip-compressed-tar,.tar.bz2=application/x-bzip-compressed-tar
 428EOF
 429}
 430
 431plackup_conf () {
 432        # generate a standalone 'plackup' server script in $fqgitdir/gitweb
 433        # with embedded configuration; it does not use "$conf" file
 434        cat > "$fqgitdir/gitweb/gitweb.psgi" <<EOF
 435#!$PERL
 436
 437# gitweb - simple web interface to track changes in git repositories
 438#          PSGI wrapper and server starter (see http://plackperl.org)
 439
 440use strict;
 441
 442use IO::Handle;
 443use Plack::MIME;
 444use Plack::Builder;
 445use Plack::App::WrapCGI;
 446use CGI::Emulate::PSGI 0.07; # minimum version required to work with gitweb
 447
 448# mimetype mapping (from lighttpd_conf)
 449Plack::MIME->add_type(
 450        ".pdf"          =>      "application/pdf",
 451        ".sig"          =>      "application/pgp-signature",
 452        ".spl"          =>      "application/futuresplash",
 453        ".class"        =>      "application/octet-stream",
 454        ".ps"           =>      "application/postscript",
 455        ".torrent"      =>      "application/x-bittorrent",
 456        ".dvi"          =>      "application/x-dvi",
 457        ".gz"           =>      "application/x-gzip",
 458        ".pac"          =>      "application/x-ns-proxy-autoconfig",
 459        ".swf"          =>      "application/x-shockwave-flash",
 460        ".tar.gz"       =>      "application/x-tgz",
 461        ".tgz"          =>      "application/x-tgz",
 462        ".tar"          =>      "application/x-tar",
 463        ".zip"          =>      "application/zip",
 464        ".mp3"          =>      "audio/mpeg",
 465        ".m3u"          =>      "audio/x-mpegurl",
 466        ".wma"          =>      "audio/x-ms-wma",
 467        ".wax"          =>      "audio/x-ms-wax",
 468        ".ogg"          =>      "application/ogg",
 469        ".wav"          =>      "audio/x-wav",
 470        ".gif"          =>      "image/gif",
 471        ".jpg"          =>      "image/jpeg",
 472        ".jpeg"         =>      "image/jpeg",
 473        ".png"          =>      "image/png",
 474        ".xbm"          =>      "image/x-xbitmap",
 475        ".xpm"          =>      "image/x-xpixmap",
 476        ".xwd"          =>      "image/x-xwindowdump",
 477        ".css"          =>      "text/css",
 478        ".html"         =>      "text/html",
 479        ".htm"          =>      "text/html",
 480        ".js"           =>      "text/javascript",
 481        ".asc"          =>      "text/plain",
 482        ".c"            =>      "text/plain",
 483        ".cpp"          =>      "text/plain",
 484        ".log"          =>      "text/plain",
 485        ".conf"         =>      "text/plain",
 486        ".text"         =>      "text/plain",
 487        ".txt"          =>      "text/plain",
 488        ".dtd"          =>      "text/xml",
 489        ".xml"          =>      "text/xml",
 490        ".mpeg"         =>      "video/mpeg",
 491        ".mpg"          =>      "video/mpeg",
 492        ".mov"          =>      "video/quicktime",
 493        ".qt"           =>      "video/quicktime",
 494        ".avi"          =>      "video/x-msvideo",
 495        ".asf"          =>      "video/x-ms-asf",
 496        ".asx"          =>      "video/x-ms-asf",
 497        ".wmv"          =>      "video/x-ms-wmv",
 498        ".bz2"          =>      "application/x-bzip",
 499        ".tbz"          =>      "application/x-bzip-compressed-tar",
 500        ".tar.bz2"      =>      "application/x-bzip-compressed-tar",
 501        ""              =>      "text/plain"
 502);
 503
 504my \$app = builder {
 505        # to be able to override \$SIG{__WARN__} to log build time warnings
 506        use CGI::Carp; # it sets \$SIG{__WARN__} itself
 507
 508        my \$logdir = "$fqgitdir/gitweb/$httpd_only";
 509        open my \$access_log_fh, '>>', "\$logdir/access.log"
 510                or die "Couldn't open access log '\$logdir/access.log': \$!";
 511        open my \$error_log_fh,  '>>', "\$logdir/error.log"
 512                or die "Couldn't open error log '\$logdir/error.log': \$!";
 513
 514        \$access_log_fh->autoflush(1);
 515        \$error_log_fh->autoflush(1);
 516
 517        # redirect build time warnings to error.log
 518        \$SIG{'__WARN__'} = sub {
 519                my \$msg = shift;
 520                # timestamp warning like in CGI::Carp::warn
 521                my \$stamp = CGI::Carp::stamp();
 522                \$msg =~ s/^/\$stamp/gm;
 523                print \$error_log_fh \$msg;
 524        };
 525
 526        # write errors to error.log, access to access.log
 527        enable 'AccessLog',
 528                format => "combined",
 529                logger => sub { print \$access_log_fh @_; };
 530        enable sub {
 531                my \$app = shift;
 532                sub {
 533                        my \$env = shift;
 534                        \$env->{'psgi.errors'} = \$error_log_fh;
 535                        \$app->(\$env);
 536                }
 537        };
 538        # gitweb currently doesn't work with $SIG{CHLD} set to 'IGNORE',
 539        # because it uses 'close $fd or die...' on piped filehandle $fh
 540        # (which causes the parent process to wait for child to finish).
 541        enable_if { \$SIG{'CHLD'} eq 'IGNORE' } sub {
 542                my \$app = shift;
 543                sub {
 544                        my \$env = shift;
 545                        local \$SIG{'CHLD'} = 'DEFAULT';
 546                        local \$SIG{'CLD'}  = 'DEFAULT';
 547                        \$app->(\$env);
 548                }
 549        };
 550        # serve static files, i.e. stylesheet, images, script
 551        enable 'Static',
 552                path => sub { m!\.(js|css|png)\$! && s!^/gitweb/!! },
 553                root => "$root/",
 554                encoding => 'utf-8'; # encoding for 'text/plain' files
 555        # convert CGI application to PSGI app
 556        Plack::App::WrapCGI->new(script => "$root/gitweb.cgi")->to_app;
 557};
 558
 559# make it runnable as standalone app,
 560# like it would be run via 'plackup' utility
 561if (caller) {
 562        return \$app;
 563} else {
 564        require Plack::Runner;
 565
 566        my \$runner = Plack::Runner->new();
 567        \$runner->parse_options(qw(--env deployment --port $port),
 568                                "$local" ? qw(--host 127.0.0.1) : ());
 569        \$runner->run(\$app);
 570}
 571__END__
 572EOF
 573
 574        chmod a+x "$fqgitdir/gitweb/gitweb.psgi"
 575        # configuration is embedded in server script file, gitweb.psgi
 576        rm -f "$conf"
 577}
 578
 579gitweb_conf() {
 580        cat > "$fqgitdir/gitweb/gitweb_config.perl" <<EOF
 581#!/usr/bin/perl
 582our \$projectroot = "$(dirname "$fqgitdir")";
 583our \$git_temp = "$fqgitdir/gitweb/tmp";
 584our \$projects_list = \$projectroot;
 585
 586\$feature{'remote_heads'}{'default'} = [1];
 587EOF
 588}
 589
 590gitweb_conf
 591
 592resolve_full_httpd
 593mkdir -p "$fqgitdir/gitweb/$httpd_only"
 594
 595case "$httpd" in
 596*lighttpd*)
 597        lighttpd_conf
 598        ;;
 599*apache2*|*httpd*)
 600        apache2_conf
 601        ;;
 602webrick)
 603        webrick_conf
 604        ;;
 605*mongoose*)
 606        mongoose_conf
 607        ;;
 608*plackup*)
 609        plackup_conf
 610        ;;
 611*)
 612        echo "Unknown httpd specified: $httpd"
 613        exit 1
 614        ;;
 615esac
 616
 617start_httpd
 618url=http://127.0.0.1:$port
 619
 620if test -n "$browser"; then
 621        httpd_is_ready && git web--browse -b "$browser" $url || echo $url
 622else
 623        httpd_is_ready && git web--browse -c "instaweb.browser" $url || echo $url
 624fi