]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd-mod_cml.conf
update doc urls
[packages/lighttpd.git] / lighttpd-mod_cml.conf
1 # CML is a Meta language to describe the dependencies of a page
2 # at one side and building a page from its fragments on the
3 # other side using LUA.
4 #
5 # Documentation: http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModCML
6
7 server.modules += (
8         "mod_cml"
9 )
10
11 ## the extension for file with cache information. With .cml,
12 ## the cache info file for index.html is index.cml
13 cml.extension = ".cml"
14
15 index-file.names += ( "index" + cml.extension )
16
17 ## the memcached used by mod_cml
18 #cml.memcache-hosts = ( "127.0.0.1:11211" )
19
20 ## a cml file that is executed for each request
21 #cml.power-magnet = "/home/services/lighttpd/html/power-magnet.cml"
This page took 0.031609 seconds and 4 git commands to generate.