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.
This article seems to be a fairly thorough "how-to" guide to set up Common Lisp on Apache using mod_lisp2.
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:
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.