From d380818a47faa11083d4ad09a389beed2bda565b Mon Sep 17 00:00:00 2001 From: robbert Date: Wed, 15 Nov 2023 11:52:52 +0100 Subject: [PATCH 1/2] set MIN_PROCS to 8 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 22a4fe4..919ebd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -164,7 +164,7 @@ RUN apt-get clean USER www ENV DEBUG 0 -ENV MIN_PROCS 4 +ENV MIN_PROCS 8 ENV MAX_PROCS 8 ENV MAX_LOAD_PER_PROC 1 ENV IDLE_TIMEOUT 20 From 45a26065acc01acf83081b739f36a32965819657 Mon Sep 17 00:00:00 2001 From: kad-dirc <101103209+kad-dirc@users.noreply.github.com> Date: Fri, 16 Aug 2024 15:57:16 +0200 Subject: [PATCH 2/2] Update lighttpd.conf Ensure the root path "/" returns "/index.html" --- config/lighttpd.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/lighttpd.conf b/config/lighttpd.conf index fd3f126..4e18f2c 100644 --- a/config/lighttpd.conf +++ b/config/lighttpd.conf @@ -2,7 +2,9 @@ server.modules += ( "mod_setenv" ) server.modules += ( "mod_fastcgi" ) server.modules += ( "mod_rewrite" ) server.modules += ( "mod_magnet" ) +server.modules += ( "mod_indexfile" ) +index-file.names = ( "index.html" ) server.document-root = "/var/www/" server.port = 80 server.tag = ""