Blame | Last modification | View Log
# FastCGI Module
# ---------------
#
# http://www.lighttpd.net/documentation/fastcgi.html
#
server.modules += ( "mod_fastcgi" )
fastcgi.server = (
".php" => (
"localhost" => (
"socket" => "/var/lib/php-fpm/php-fpm.sock",
"broken-scriptfilename" => "enable"
)
)
)