blob: 515e7c52aafd199b7a0c8434e83da79aa5420b0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
###############################################################################
# mod_fastcgi.conf
# include'd by lighttpd.conf.
###############################################################################
server.modules += ("mod_fastcgi")
fastcgi.server = (
".php" => (
"localhost" => (
"socket" => "/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket",
"bin-path" => "/usr/bin/php-cgi"
)
)
)
|