(也发布到FastCGI ++ - 用户邮件列表,但它在相当长的时间内没有激活)
我目前正在尝试在我正在编写的应用程序中使用FastCGI ++(版本2.1)库。该应用程序将作为Linux机器上的守护程序运行,状态网页通过lighttpd提供。我打算定期使用FastCGI ++界面,自动更新状态网页。
我已经开始向我的应用程序添加一个线程,该线程创建一个FastCGI ++管理器的实例,并回应一个字符串文字以响应任何请求(基本上与Hello World示例相同)。
但是,我似乎无法在浏览器中访问它,我怀疑我错误地配置了lighttpd fastcgi模块(下面包含/etc/lighttpd/lighttpd.conf)。 lighttpd错误日志记录了“unix上没有这样的文件或目录:/tmp/Myapp.sock”。
配置lighttpd与实现fastcgi ++库的守护进程接口的正确方法是什么?是否有必要使用spawn-fcgi启动守护进程?
谢谢,
麦克
cat /etc/lighttpd/lighttpd.conf:
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_rewrite",
"mod_cgi",
"mod_fastcgi",
)
server.document-root = "/var/www/html"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
cgi.assign = (".py" => "/usr/bin/python3")
fastcgi.debug = 1
fastcgi.server = ( "/device" => ((
"socket" => "/tmp/Myapp.sock",
"check_local" => "disable",
"docroot" => "/"
))
)
index-file.names = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/javascript", "text/css", "text/html", "text/plain" )
# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
答案 0 :(得分:0)
" unix上没有这样的文件或目录:/tmp/Myapp.sock"
这意味着缺少套接字。
你的守护进程在运行吗?你启动了吗?
如果你想让lighttpd启动守护进程,那么你必须包含" bin-path"在" / device"的fastcgi.server设置中。看到 https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModFastCGI