WebAppConnection {CONNECTION_NAME} {CONNECTION_TYPE} {LISTENER_IP:LISTENER_PORT}
WebAppMount {APP_NAME} {CONNECTION_NAME} {MOUNT_POINT}
If your web server is listening at the IP address 127.0.0.1, the resulting URL will look like so:
http://127.0.0.1 /{MOUNT_POINT}/{APP_NAME}
[1]Assuming that you have a mod_webapp which is built as a shared object library, and that it is located at /usr/lib/apache/1.3/mod_webapp.so, the following directives could be added to your Apache httpd.conf, for activating the module:
LoadMoudle webapp_module /usr/lib/apache/1.3/mod_webapp.so <IfModule mod_webapp.c> WebAppConnection main_conn warp 127.0.0.1:8007 WebAppMount test main_conn /imho/ </IfModule> |
For Apache to be able to access your 'test' webapp, you would then need to ensure that the variable imho:*lisp-server-port* has the value 8007
[1] | is this even correct? it seems that APP_NAME doesn't matter for anything,
whereas the base-url slot on
|