我正在尝试使用 ligttpd 服务器配置 FastCgi。
我可以像这样运行 vanilla lighttpd:./lighttpd -f lighttpd.conf
然后我编译/安装 fastcgi 的源,并在我的 lighttpd.conf 中添加以下内容:
fastcgi.server = ( "/fastcgi_scripts/" =>
(( #"host" => "127.0.0.1",
#"port" => 9091,
"check-local" => "disable",
"bin-path" => "/usr/local/bin/cgi-fcgi",
"docroot" => "/" # remote server may use
# it's own docroot
))
)
但是我添加上述内容后,lighttpd 却无法启动。
你能告诉我如何使用 lighttpd 运行 fastcgi 吗?我想使用带有 lighttpd 的 fastcgi 的 ac 程序。
谢谢。
答案1
这就是全部:
fastcgi.server = ( ".php" => ((
"bin-path" => "/usr/bin/php-cgi",
"socket" => "/tmp/php.socket"
)))