This file is indexed.

/usr/share/doc/libapache2-mod-lisp/README.Debian is in libapache2-mod-lisp 1.3.1-1.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
libapache2-mod-lisp for Debian 
-----------------------------

Please visit http://www.fractalconcept.com/asp/mod_lisp for more
information.

The package does not do any automatic configuration.  Please configure
Apache2 appropriately, according to the following instructions.

Configuration
-------------

In the Apache2 config file "/etc/apache2/apache2.conf":

Add a LispServer directive:

    LispServer IP-ADDRESS IP-PORT USER-DEFINED-NAME

where

    IP-ADDRESS is the ip address of the computer where the Lisp
    process is.

    IP-PORT is the ip port of the computer where the Lisp process is.

    USER-DEFINED-NAME is a string that will be passed from Apache to
    the Lisp process. It is useful when you have several virtual
    servers or directories, defined within an Apache server, to be
    processed by mod_lisp.

For example:

    LispServer 127.0.0.1 3000 "fractal"

Then add a SetHandler directive:

    <Location /asp> 
	SetHandler lisp-handler 
    </Location> 

All of the URLs located in /asp (e.g. "/asp/index.html") will be sent to
the Lisp process.

It is recommended that you wrap the above directives in an IfModule
block, like this:

    <IfModule mod_lisp.c>
	LispServer  127.0.0.1 3000 "fractal" 
	...  
	<Location /asp> 
	    SetHandler lisp-handler 
	</Location> 
    </IfModule>

After you having finished configuration, restart Apache2.