diff options
Diffstat (limited to 'libs/web')
-rw-r--r-- | libs/web/luasrc/cacheloader.lua | 23 | ||||
-rw-r--r-- | libs/web/root/etc/config/luci | 3 |
2 files changed, 26 insertions, 0 deletions
diff --git a/libs/web/luasrc/cacheloader.lua b/libs/web/luasrc/cacheloader.lua new file mode 100644 index 0000000000..942c4b7b48 --- /dev/null +++ b/libs/web/luasrc/cacheloader.lua @@ -0,0 +1,23 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Steven Barth <steven@midlink.org> +Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +local config = require "luci.config" +local ccache = require "luci.ccache" + +module "luci.cacheloader" + +if config.ccache and config.ccache.enable == "1" then + ccache.cache_ondemand() +end
\ No newline at end of file diff --git a/libs/web/root/etc/config/luci b/libs/web/root/etc/config/luci index 76fa441c80..8b222aaaa1 100644 --- a/libs/web/root/etc/config/luci +++ b/libs/web/root/etc/config/luci @@ -41,6 +41,9 @@ config internal sauth option sessionpath "/tmp/.lucisessions" option sessiontime 3600 +config internal ccache + option enable 1 + config internal template option compiler_mode file option compiledir "/tmp/.lucitplcache" |