From 33ebf3c640ca7382adba53fcf1cd01c8cae47992 Mon Sep 17 00:00:00 2001 From: Julian Date: Tue, 10 Jun 2025 18:09:54 +0200 Subject: [PATCH] try to bind to all interfaces --- docker/lighttpd.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/lighttpd.conf b/docker/lighttpd.conf index 83d697d..ade529e 100644 --- a/docker/lighttpd.conf +++ b/docker/lighttpd.conf @@ -1,6 +1,7 @@ server.document-root = "/var/www" server.port = 3000 +server.bind = "0.0.0.0" server.modules = ( "mod_indexfile" ) index-file.names = ( "index.html" )