From 86ffad6fa449cdd56f895eb8faff3ee72456f4ef Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Tue, 6 Jan 2026 06:14:36 +0900 Subject: Add docker --- lighttpd.conf | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lighttpd.conf (limited to 'lighttpd.conf') diff --git a/lighttpd.conf b/lighttpd.conf new file mode 100644 index 0000000..94eb5fe --- /dev/null +++ b/lighttpd.conf @@ -0,0 +1,9 @@ +server.modules += ( "mod_cgi", "mod_alias", "mod_rewrite" ) + +server.port = 80 +server.document-root = "/app/www" + +$HTTP["url"] !~ "^/static" { + alias.url = ( "" => "/app/www/cgit.cgi" ) + cgi.assign = ( "" => "" ) +} -- cgit v1.2.3