This file is indexed.

/usr/share/doc/klone/examples/kloned-vhost.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
37
38
39
40
41
42
43
44
45
46
47
48
49
server_list     main

allow_root      yes

# shortcut, it's just an alias referenced by other vars
php_cgi_path    /usr/local/bin/php

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

main
{
    model           prefork

    type            http
    addr.type       IPv4
    addr.port       8080 

    access_log
    {
        # prefix added to all access log entries (default: "[access]")
        # prefix        [access]

        # choose what to log (KLone logs everything by default)
        log         *.*

        # choose what NOT to log
        dontlog     *.css
        dontlog     *.ico
    }

    # default vhost
    dir_root        /path/to/www.mysite.com/

    # applies when Host: wiki.koanlogic.com
    www.example.com
    {
        dir_root        /path/to/www.example.com/
    }

    www.hello.com
    {
        dir_root        /path/to/www.hello.com/
    }
}