On Thu, 29 Sep 2005 13:36:25 +0200, Nicolas Lamirault lam@tuxfamily.org wrote:
i try this configuration of apache :
<Location /cl-album> LispServer 127.0.0.1 3000 "cl-album" SetHandler lisp-handler
</Location>
<Location /musicdb> LispServer 127.0.0.1 3001 "musicdb" SetHandler lisp-handler
</Location>
but when i try to acces web site by http://127.0.0.1/cl-album/index or http://127.0.0.1/musicdb/index, i have the tbnl's default page.
What did you expect instead? Do you have dispatchers and handlers for the URIs "/cl-album/index" and "/musicdb/index"? Otherwise it is quite clear that you see the default page.
For a simple test you could start two different Lisps like, say, LispWorks listening on port 3000 and CMUCL listening on port 3001. You should see two different default pages.
Cheers, Edi.