Skip to content

Instantly share code, notes, and snippets.

@saghul
Created April 22, 2011 11:23
Show Gist options
  • Save saghul/936469 to your computer and use it in GitHub Desktop.
Save saghul/936469 to your computer and use it in GitHub Desktop.
lighttpd + PHP-FPM
server.modules += ( "mod_fastcgi" )
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"host" => "127.0.0.1",
"port" => "9000"
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment