aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/.sledjChisl.conf.lua
diff options
context:
space:
mode:
authoronefang2020-09-08 21:34:54 +1000
committeronefang2020-09-08 21:34:54 +1000
commitbd58d3012c26d16150f650c389d1136741d3939d (patch)
tree3d2aec8bfe0a0c9061ddb4814e71aff33b9b8dc8 /src/.sledjChisl.conf.lua
parentAdd the old bash scripts. (diff)
downloadopensim-SC-bd58d3012c26d16150f650c389d1136741d3939d.zip
opensim-SC-bd58d3012c26d16150f650c389d1136741d3939d.tar.gz
opensim-SC-bd58d3012c26d16150f650c389d1136741d3939d.tar.bz2
opensim-SC-bd58d3012c26d16150f650c389d1136741d3939d.tar.xz
Add the SledjChisl stuff.
Diffstat (limited to '')
-rw-r--r--src/.sledjChisl.conf.lua58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/.sledjChisl.conf.lua b/src/.sledjChisl.conf.lua
new file mode 100644
index 0000000..6b8f29b
--- /dev/null
+++ b/src/.sledjChisl.conf.lua
@@ -0,0 +1,58 @@
1-- sledjChislConfig.lua
2
3-- This works coz LuaJIT automatically loads the jit module.
4if type(jit) == 'table' then
5 io.write('.sledjChisl.conf.lua is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n')
6else
7 io.write('.sledjChisl.conf.lua is being run by Lua version ' .. _VERSION .. '\n')
8end
9
10config =
11{
12 ["performance"] = "default"; -- fast, balanced, default, lean
13 ["debug"] = true;
14 ["scRoot"] = "/opt/opensim_SC";
15 ["scUser"] = "opensimsc";
16 ["Tconsole"] = "SledjChisl";
17 ["Tsocket"] = "opensim-tmux.socket";
18 ["Ttab"] = "SC";
19 ["loadAverageInc"] = 0.7;
20 ["simTimeOut"] = 45; -- seconds
21 ["webRoot"] = "/var/www/html";
22 ["webHost"] = "localhost";
23 ["URL"] = "sledjchisl.fcgi";
24 ["webIframers"] = ""; -- Space separated list of hosts allowed to iFrame us, coz someone asked. Include the "https://" bit.
25 ["seshRenew"] = 10 * 60; -- seconds
26 ["idleTimeOut"] = 30 * 60; -- seconds
27 ["seshTimeOut"] = 24 * 60 * 60; -- seconds
28 ["newbieTimeOut"] = 30; -- days
29 ["pepper"] = "My long beard is salt and pepper coloured, though there are no birds in it, only breakfast.";
30 ["ToS"] = [[
31
32Don't do anything that is illegal anywhere in the world.
33
34Well, that wont work, almost everything is illegal somewhere in the
35world.
36
37Don't do anything that is against the moral code of the system admins.
38
39Well, except that one thing, you know, that they'll put up with coz they
40are nice people, but it's wrong m'kay.
41
42Don't be mean to anyone, except Dave, coz he smells evil.
43
44Well, it's not that Dave smells evil, he's just differently fragranced,
45and our overwashed germophobe society is well trained to demonize those
46that smell differently. So be extra nice to Dave, coz he's a great guy,
47and is tired of everyone being mean to him just coz he's trying to be
48good for the environment and his health. Which means he smells different
49to whatever perfume is fashionable this year, coz the corporations want
50to sell that this year. I blame marketing, they're actually evil.
51Sorry, went off on a rant there.
52
53Oh just respect and be nice to everyone dammit, unless they ask nicely
54otherwise. Also be good for the environment and stay healthy.
55
56]];
57}
58return config