]> git.pld-linux.org Git - packages/lighttpd.git/blobdiff - lighttpd-mod_cml.conf
- ideas from debian
[packages/lighttpd.git] / lighttpd-mod_cml.conf
index 3a3baeaa936c5d9ff4fd3636792c59c5ee71dff2..b7976b2b7e8c68103af6a92fb91c14ead4202a47 100644 (file)
@@ -1,9 +1,21 @@
+## 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.
+##
+## Documentation: http://www.lighttpd.net/documentation/cml.html
+
 server.modules += (
        "mod_cml"
 )
 
-## for mod_cml
-## don't forget to add index.cml to server.indexfiles
-# cml.extension               = ".cml"
-# cml.memcache-hosts          = ( "127.0.0.1:11211" )
+## 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 = "/home/services/lighttpd/html/power-magnet.cml"
This page took 0.023981 seconds and 4 git commands to generate.