gitosis/lighttpd-gitweb.conf

22 lines
480 B
Plaintext
Raw Normal View History

2007-11-25 17:32:02 +01:00
server.modules += (
"mod_cgi",
"mod_setenv",
)
url.redirect += (
"^/gitweb$" => "http://example.com/gitweb/",
)
alias.url += (
"/gitweb/" => "/usr/lib/cgi-bin/gitweb.cgi",
"/gitweb.css" => "/var/www/gitweb.css",
"/git-logo.png" => "/var/www/git-logo.png",
"/git-favicon.png" => "/var/www/git-favicon.png",
)
$HTTP["url"] =~ "^/gitweb/" {
setenv.add-environment = (
"GITWEB_CONFIG" => "/srv/example.com/gitweb/gitweb.conf",
)
cgi.assign = ( "" => "" )
}