lighttpd: add include directive

This commit is contained in:
Starbeamrainbowlabs 2023-12-16 20:07:25 +00:00
parent 2a48e9630e
commit ed28fcb814
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 5 additions and 2 deletions

View File

@ -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"
))
)
)
include "/srv/lighttpd/*.conf";