From ed28fcb814ac954b29182e1703008201e344a8be Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 16 Dec 2023 20:07:25 +0000 Subject: [PATCH] lighttpd: add include directive --- images/php-fpm/lighttpd.conf | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/images/php-fpm/lighttpd.conf b/images/php-fpm/lighttpd.conf index 022f2a2..cd7dcad 100644 --- a/images/php-fpm/lighttpd.conf +++ b/images/php-fpm/lighttpd.conf @@ -1,6 +1,7 @@ server.modules = ( "mod_indexfile", - "mod_fastcgi" + "mod_fastcgi", + "mod_access" ) server.document-root = "/srv/www" @@ -13,4 +14,6 @@ fastcgi.server = ( ".php" => "socket" => "/run_local/php-fpm.sock", "broken-scriptfilename" => "enable" )) -) \ No newline at end of file +) + +include "/srv/lighttpd/*.conf"; \ No newline at end of file