blob: 849a2039e7107da25215fa8ba5763ee012595553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
-- sledjChislConfig.lua
-- This works coz LuaJIT automatically loads the jit module.
if type(jit) == 'table' then
io.write('.sledjChisl.conf.lua is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n')
else
io.write('.sledjChisl.conf.lua is being run by Lua version ' .. _VERSION .. '\n')
end
config =
{
["scRoot"] = "/opt/opensim_SC";
["scUser"] = "opensimsc";
["Tconsole"] = "SledjChisl";
["Tsocket"] = "caches/opensim-tmux.socket";
["Ttab"] = "SC";
["loadAverageInc"] = 0.7;
["simTimeOut"] = 45; -- seconds
["webRoot"] = "/var/www";
["URL"] = "sledjchisl.fcgi";
["seshTimeOut"] = 30 * 60; -- seconds
["idleTimeOut"] = 24 * 60 * 60; -- seconds
["newbieTimeOut"] = 30; -- days
["pepper"] = "My long beard is salt and pepper coloured, though there are no birds in it, only breakfast.";
}
return config
|