docker-images/images/php-fpm/lighttpd.conf

16 lines
325 B
Plaintext
Raw Normal View History

server.modules = (
"mod_indexfile",
"mod_fastcgi"
)
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"
))
)