[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua + cgilua + lightttpd
- From: Marc Balmer <marc@...>
- Date: Mon, 05 Aug 2013 09:03:36 +0200
Am 05.08.13 05:34, schrieb Henrique Gogó:
> And any solution for my FastCGI problem?
Not a solution, but since we use lighttpd as well (and Lua, of course)
for our web applications, here is how we do it:
We create a small application, a daemon process, that links against the
fastcgi and clearsilver (www.clearsilver.net) libraries. The C program
creates a Lua state, and listens for incoming FastCGI request. It then
lets clearsilver decode the request and hands it down to Lua.
- Marc