Configuration Apache + mod_lisp ------------------------------- Add these lines to /etc/http/http.conf: LoadModule lisp_module /usr/lib/apache/mod_lisp.so AddModule mod_lisp.c The add Location paragraphs: For example, I redirect /app/bellerophon, /app/admin and /app/example to the first server on localhost port 3001, and /app/domingo on a second server on localhost port 3002: # UCW configuration: LispServer 127.0.0.1 3001 "bellerophon" SetHandler lisp-handler LispServer 127.0.0.1 3002 "domingo" SetHandler lisp-handler