I've been researching modules for Nginx (my preferred webserver) to serve a Lisp webapp, but I haven't been able to find anything.

Is there modules for Nginx, or is there better ways to serve Lisp webapps? If so, what are they?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

If Nginx support proxying, you could always proxy to a Hunchentoot server running on localhost.

link|improve this answer
1  
nginx is first a proxy, and only incidentally a server – Javier Nov 6 '08 at 15:49
feedback

There's always mod_lisp if you're interested in using Apache. (It's like Phusion Passenger for ruby webapps.) Nginx is nice but you have to compile it every time you want to extend it, which isn't too intuitive. Keeps it fast though. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.