This file is indexed.

/etc/lighttpd/conf-available/10-cml.conf is in lighttpd-mod-cml 1.4.45-1ubuntu3.

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
## CML is a Meta language to describe the dependencies of a page
## at one side and building a page from its fragments on the 
## other side using LUA.
##
## /usr/share/doc/lighttpd/cml.txt

server.modules += ( "mod_cml" )

## the extension for file with cache information. With .cml,
## the cache info file for index.html is index.cml
cml.extension = ".cml"

index-file.names += ( "index" + cml.extension )

## the memcached used by mod_cml
# cml.memcache-hosts = ( "127.0.0.1:11211" )

## a cml file that is executed for each request
# cml.power-magnet = "/var/www/power-magnet.cml"