lua-users home
lua-l archive

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


On 09/24/2012 09:24 PM, Petite Abeille wrote:

On Sep 23, 2012, at 2:43 AM, g.lister <g.lister@nodeunit.com> wrote:

I was wondering what are people doing for Lua web development and if anyone is using nginx as the HTTP server and how is Lua setup in this case.

While nginx is a fine piece of machinery, do you really need such a tight integration and its added complexity?

CGI is looked down at, but its simplicity and portability cannot be beaten.

A combination of, say, Acme Labs' thttpd [1] and Lua scripts could be a winner, at one tenth of nginx footprint.

Here is D. Richard Hipp on the discreet charm of cgi-bin:

http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg02065.html

As well as a small, simple HTTP server implementation:

http://www.sqlite.org/docsrc/artifact/d53e8146bf7977

As always, your milage might vary.


[1] http://www.acme.com/software/thttpd/



Thank you those are really good points I like the: http://www.sqlite.org/docsrc/artifact/d53e8146bf7977 it seems like I can run any Lua script as CGI worth a try. Have you tried that??

Best,
George