Changeset 458
- Timestamp:
- 07/15/2005 06:19:10 PM (3 years ago)
- Location:
- branches/lighttpd-1.3.x/doc
- Files:
-
- 2 modified
-
cml.txt (modified) (1 diff)
-
lighttpd.conf (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.3.x/doc/cml.txt
r454 r458 157 157 Now we get about 10000 req/s instead of 600 req/s. 158 158 159 Installation 160 ============ 161 162 You need `lua <http://www.lua.org/>`_ and should install `<libmemcache-1.3.x http://people.freebsd.org/~seanc/libmemcache/>` 163 and have to configure lighttpd with: :: 164 165 ./configure ... --with-lua --with-memcache 166 167 To use the plugin you have to load it: :: 168 169 server.modules = ( ..., "mod_cml", ... ) 170 159 171 Options 160 172 ======= -
branches/lighttpd-1.3.x/doc/lighttpd.conf
r442 r458 17 17 # "mod_alias", 18 18 "mod_access", 19 # "mod_cml", 20 # "mod_trigger_b4_dl", 19 21 # "mod_auth", 20 22 # "mod_status", … … 266 268 #setenv.add-response-header = ( "X-Secret-Message" => "42" ) 267 269 270 ## for mod_trigger_b4_dl 271 # trigger-before-download.gdbm-filename = "/home/weigon/testbase/trigger.db" 272 # trigger-before-download.memcache-hosts = ( "127.0.0.1:11211" ) 273 # trigger-before-download.trigger-url = "^/trigger/" 274 # trigger-before-download.download-url = "^/download/" 275 # trigger-before-download.deny-url = "http://127.0.0.1/index.html" 276 # trigger-before-download.trigger-timeout = 10 277 278 ## for mod_cml 279 ## don't forget to add index.cml to server.indexfiles 280 # cml.extension = ".cml" 281 # cml.memcache-hosts = ( "127.0.0.1:11211" )

