This file is indexed.

/usr/share/doc/klone/examples/kloned-https.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
server_list     my_http my_https

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

# unencrypted HTTP
my_http
{
    type            http
    addr.type       IPv4
    addr.port       8080
    dir_root        /www            # store your pages in /www into embfs
}

# HTTP/S server
my_https
{
    type            https
    addr.type       IPv4
    addr.port       443
    dir_root        /www            

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