This file is indexed.

/usr/share/doc/klone/example-site/etc/kloned.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
26
27
28
29
30
31
32
33
34
35
36
# Server List 
#   append "my_https" to enable HTTP/S server
#
server_list     my_http # my_https

allow_root      yes

# use syslogd for logging
log
{
    type syslog
    syslog.facility         LOG_LOCAL0
}

my_http
{
    type            http
    addr.type       IPv4
    addr.port       8080 

    dir_root        /www            # store your pages in /www into embfs

    # enable CGIs (./configure --enable_sup_cgi ... to enable CGI support)
    # dir_alias       /cgi-bin        /path/to/cgi-bin
}

my_https
{
    type            https
    addr.type       IPv4
    addr.port       4443
    dir_root        /www

    # certificate file (embfs or file system)
    cert_file       /etc/kloned.pem
}