This file is indexed.

/usr/share/doc/klone/examples/kloned-nodisk-memoryses.conf is in klone 2.1.0~rc1-1.

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
# no storage required, in-memory logging, in-memory sessions

server_list     my_http

log
{
    type            memory 
    memory.limit    200     # 200 lines max
}

my_http
{
    type            http
    addr.type       IPv4
    addr.port       8080
    dir_root        /www  # having your pages stored in /www into embfs

    session
    {
        type            memory

        memory.limit        10240   # use max 10KB of RAM
        memory.max_count    10      # max 10 sessions
    }
}