1
2
3
4
5
6
7
8
9
10
11
12
13
# Interim lighttpd config — remove when quire serve has its own web view.
# See TODO(vys) in the Dockerfile.

server.document-root = "/usr/local/share/gitweb"
server.port = 8080
server.modules = ("mod_cgi")

# Write runtime files to /tmp since the container runs as a non-root user.
server.pid-file = "/tmp/lighttpd.pid"
server.errorlog = "/tmp/lighttpd-error.log"

index-file.names = ("gitweb.cgi")
cgi.assign = (".cgi" => "")