阿帕奇+ mod_lisp + 剪辑
如何配置 apache + mod_lisp + clisp 并设置“Hello World!”? 我找不到有关该主题的任何完整指南。 谢谢。
编辑:Vebjorn 的解决方案有效,但我不知道如何编写“hello world!”。 谁能告诉我如何继续? 有类似 SWANKing clisp 的东西,然后用 SLIME 连接到它,但是当我启动 mod_lisp 的演示时,测试页面没有提供,我的 slime 也没有返回?
再次感谢。
How to to configure apache + mod_lisp + clisp and set up a "Hello World!"? I couldn't find any complete howto on the subject. Thanks.
Edit: Vebjorn's solution works, but then I don't how to code the "hello world!". Can anyone tell me how to proceed? There's something like SWANKing the clisp, then connect to it with SLIME, but then when I launch mod_lisp's demo, the test page is not served and my slime doesn't return?
Thanks again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
sudo apxs -i -c mod_lisp.c
编译并安装 Apache 模块httpd.conf
中:sudo apachectl restart
重新启动apache启动 CLISP 并评估:
将浏览器指向 http://localhost/foo。 您应该看到:
sudo apxs -i -c mod_lisp.c
httpd.conf
:sudo apachectl restart
Start CLISP and evaluate:
Point your browser to http://localhost/foo. You should see:
您使用什么后端? 如果没有,我建议尝试 Hunchentoot 或者,甚至更好,UCW。
这两个链接都会将您带到安装说明,最后以 Hello World 类型的页面结束。
What backend are you using? If none, I would suggest trying Hunchentoot or, even better, UCW.
Both of those links will take you to the installation instructions, ending with a Hello World kind of page.
这篇文章似乎是一篇相当详尽的“操作方法” " 使用 mod_lisp2 在 Apache 上设置 Common Lisp 的指南。
This article seems to be a fairly thorough "how-to" guide to set up Common Lisp on Apache using mod_lisp2.