On 2005-06-10 09:17:23, Bob Hutchison wrote:
So far I've got 48 create-static-file-dispatcher-and-handler definitions in my TBNL dispatch table. These are mostly image files
Apache is really good for this task. You can either put your application (without the static files) into its own directory or the other way.
When you want to set the lisp-handler for the whole site except for one directory you could configure it that way:
... SetHandler lisp-handler <LocationMatch /static> SetHandler none </LocationMatch> ...
Regards, Stefan