Skip to content
Snippets Groups Projects
Commit b37bb17f authored by Marek Vavruša's avatar Marek Vavruša
Browse files

daemon/config: cache open by default (even if not in config)

before the cache was disabled by default, but this has led to many user
errors (mine as well). this enables it by default (which is what most
people want anyway)
parent d6337dfa
Branches
Tags
No related merge requests found
-- Default configuration
cache.open(10*MB)
-- Listen on localhost
if not next(net.list()) then
if not pcall(net.listen, '127.0.0.1') then
......
......@@ -66,6 +66,8 @@ setmetatable(cache, {
else rawset(t, k, v) end
end
})
-- Defaults
cache.size = 10 * MB
-- Syntactic sugar for TA store
trust_anchors = kres.trust_anchors
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment