diff options
| author | Tolmachev Igor <me@igorek.dev> | 2026-01-06 06:14:36 +0900 |
|---|---|---|
| committer | Tolmachev Igor <me@igorek.dev> | 2026-01-06 06:14:36 +0900 |
| commit | 86ffad6fa449cdd56f895eb8faff3ee72456f4ef (patch) | |
| tree | 544c7bfaeee04647b37ae96e2c36bc7edd130c62 /lighttpd.conf | |
| parent | b496a47e394e0f65a20c91680935fb5cf3dd6ea5 (diff) | |
| download | cgit_material_docker-86ffad6fa449cdd56f895eb8faff3ee72456f4ef.tar.gz cgit_material_docker-86ffad6fa449cdd56f895eb8faff3ee72456f4ef.zip | |
Add docker
Diffstat (limited to 'lighttpd.conf')
| -rw-r--r-- | lighttpd.conf | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lighttpd.conf b/lighttpd.conf new file mode 100644 index 0000000..94eb5fe --- /dev/null +++ b/lighttpd.conf | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | server.modules += ( "mod_cgi", "mod_alias", "mod_rewrite" ) | ||
| 2 | |||
| 3 | server.port = 80 | ||
| 4 | server.document-root = "/app/www" | ||
| 5 | |||
| 6 | $HTTP["url"] !~ "^/static" { | ||
| 7 | alias.url = ( "" => "/app/www/cgit.cgi" ) | ||
| 8 | cgi.assign = ( "" => "" ) | ||
| 9 | } | ||
