为 Lisp 编写的 Web 应用程序提供服务的首选方式是什么?
我一直在研究 Nginx(我首选的网络服务器)的模块来为 Lisp Web 应用程序提供服务,但我还没有找到任何东西。
是否有适用于 Nginx 的模块,或者是否有更好的方法来服务 Lisp Web 应用程序? 如果有,它们是什么?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果 Nginx 支持代理,您始终可以代理到在本地主机上运行的 Hunchentoot 服务器。
If Nginx support proxying, you could always proxy to a Hunchentoot server running on localhost.
如果您对使用 Apache 感兴趣,总有 mod_lisp。 (它就像 ruby webapps 的 Phusion Passenger。)Nginx 很好,但每次想要扩展它时都必须编译它,这不太直观。 不过保持速度很快。 :)
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. :)
您可以在 nginx 后面使用 hunchentoot。 无需单独安装任何模块,您可以通过 nginx 将请求定向到 hunchentoot。
以及
location {}
指令中的某处;这对我有用。 nginx/1.4.2。
you can use hunchentoot behind nginx. without any module installation separately you can direct requests over nginx to hunchentoot.
and somewhere in
location {}
directive;this works for me. nginx/1.4.2.