summaryrefslogtreecommitdiff
path: root/templates/web/lighttpd
blob: 621ff79fd931b2e4c88840d3a0d4811fce2fad82 (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" => "/etc/gitweb.d/${name}.conf",
    )
    cgi.assign = ( ".cgi" => "" )
}