docker-images/images/php-fpm/lighttpd.conf
2023-12-16 14:59:24 +00:00

16 lines
312 B
Plaintext

server.modules = (
"mod_indexfile",
"mod_fastcgi"
)
server.document-root = "/srv/www"
server.port = 3000
index-file.names = ( "index.html" )
static-file.exclude-extensions = ( ".php" )
fastcgi.server = ( ".php" =>
((
"socket" => "/run_local/php-fpm.sock",
"broken-scriptfilename" => "enable"
))
)