lispmxEn 2021-06-11 17:09:38

 libapache2-mod-lisp is an Apache2 module that interfaces with Lisp environments.


EstablisheEstablishes a link between the Apache2 web server and a Lisp environment that allows a Lisp program to generate dynamic content while letting Apache2 take care of the dirty details of HTTP serving.s a link between the Apache2 web server and a Lisp environment that allows a Lisp program to generate dynamic content while letting Apache2 take care of the dirty details of HTTP serving.


UCW mod_lisp Backend

In order to install mode_lisp you need to run:


# aptitude install libapache2-mod-lisp

Enable module

# a2enmod lisp


Configuring Apache with mod_lisp
add the following lines in /etc/apache2.conf  file:



LispServer 127.0.0.1 8080 "foo"
< Location / >
    SetHandler lisp-handler

< / Location>



Restart apache server
# /etc/init.d/apache2 restart


References:

https://github.com/ikkiware/ucw-core/blob/master/doc/getting-started.txt

https://www.cliki.net/mod_lisp

https://packages.debian.org/buster/libapache2-mod-lisp



Code example




Firefox browser