2023-12-16 13:59:10 +00:00
|
|
|
server.modules = (
|
|
|
|
"mod_indexfile",
|
2023-12-16 20:07:25 +00:00
|
|
|
"mod_fastcgi",
|
|
|
|
"mod_access"
|
2023-12-16 13:59:10 +00:00
|
|
|
)
|
|
|
|
|
2023-12-16 14:59:24 +00:00
|
|
|
server.document-root = "/srv/www"
|
2023-12-16 13:21:21 +00:00
|
|
|
server.port = 3000
|
2023-12-16 18:39:09 +00:00
|
|
|
index-file.names = ( "index.html", "index.php" )
|
2023-12-16 13:21:21 +00:00
|
|
|
|
|
|
|
static-file.exclude-extensions = ( ".php" )
|
|
|
|
fastcgi.server = ( ".php" =>
|
|
|
|
((
|
2023-12-16 14:19:58 +00:00
|
|
|
"socket" => "/run_local/php-fpm.sock",
|
2023-12-16 13:21:21 +00:00
|
|
|
"broken-scriptfilename" => "enable"
|
|
|
|
))
|
2023-12-16 20:07:25 +00:00
|
|
|
)
|
|
|
|
|
2023-12-16 22:07:36 +00:00
|
|
|
include_shell "/usr/share/lighttpd/create-mime.conf.pl"
|
2023-12-16 20:32:23 +00:00
|
|
|
include "/srv/lighttpd/*.conf"
|