ansible-role-gravcms/files/lighttpd-php-cgi.conf
2019-03-16 19:54:32 +01:00

10 lines
243 B
Plaintext

server.modules += ("mod_fastcgi")
fastcgi.server = ( ".php" =>
( "localhost" =>
(
"socket" => "/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)