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

20 lines
428 B
Plaintext

server.modules = (
"mod_indexfile",
"mod_fastcgi",
"mod_access"
)
server.document-root = "/srv/www"
server.port = 3000
index-file.names = ( "index.html", "index.php" )
static-file.exclude-extensions = ( ".php" )
fastcgi.server = ( ".php" =>
((
"socket" => "/run_local/php-fpm.sock",
"broken-scriptfilename" => "enable"
))
)
include_shell "/usr/share/lighttpd/create-mime.conf.pl"
include "/srv/lighttpd/*.conf"