]> git.pld-linux.org Git - packages/lighttpd.git/commitdiff
- ideas from debian
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 17 Jul 2006 12:45:54 +0000 (12:45 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    lighttpd-mod_cml.conf -> 1.3

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.121951 seconds and 4 git commands to generate.