lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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