summaryrefslogtreecommitdiff
path: root/templates/web/lighttpd
blob: 1153154908ab1894c1eaf67aceb0f83f788b7b52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$HTTP["host"] == "<%= gitweb_url %>" {
    url.redirect += (
      "^$" => "/",
    )

    alias.url += (
      "/gitweb.css" => "/var/www/git/gitweb.css",
      "/git-logo.png" => "/var/www/git/git-logo.png",
      "/git-favicon.png" => "/var/www/git/git-favicon.png",
      "/" => "/var/www/git/gitweb.cgi",
    )

    setenv.add-environment = (
      "GITWEB_CONFIG" => "<%= gitweb_config %>"
    )
    cgi.assign = ( ".cgi" => "" )
}