diff options
author | onefang | 2020-09-08 21:34:54 +1000 |
---|---|---|
committer | onefang | 2020-09-08 21:34:54 +1000 |
commit | bd58d3012c26d16150f650c389d1136741d3939d (patch) | |
tree | 3d2aec8bfe0a0c9061ddb4814e71aff33b9b8dc8 /src/.sledjChisl.conf.lua | |
parent | Add the old bash scripts. (diff) | |
download | opensim-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.lua | 58 |
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. | ||
4 | if type(jit) == 'table' then | ||
5 | io.write('.sledjChisl.conf.lua is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n') | ||
6 | else | ||
7 | io.write('.sledjChisl.conf.lua is being run by Lua version ' .. _VERSION .. '\n') | ||
8 | end | ||
9 | |||
10 | config = | ||
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 | |||
32 | Don't do anything that is illegal anywhere in the world. | ||
33 | |||
34 | Well, that wont work, almost everything is illegal somewhere in the | ||
35 | world. | ||
36 | |||
37 | Don't do anything that is against the moral code of the system admins. | ||
38 | |||
39 | Well, except that one thing, you know, that they'll put up with coz they | ||
40 | are nice people, but it's wrong m'kay. | ||
41 | |||
42 | Don't be mean to anyone, except Dave, coz he smells evil. | ||
43 | |||
44 | Well, it's not that Dave smells evil, he's just differently fragranced, | ||
45 | and our overwashed germophobe society is well trained to demonize those | ||
46 | that smell differently. So be extra nice to Dave, coz he's a great guy, | ||
47 | and is tired of everyone being mean to him just coz he's trying to be | ||
48 | good for the environment and his health. Which means he smells different | ||
49 | to whatever perfume is fashionable this year, coz the corporations want | ||
50 | to sell that this year. I blame marketing, they're actually evil. | ||
51 | Sorry, went off on a rant there. | ||
52 | |||
53 | Oh just respect and be nice to everyone dammit, unless they ask nicely | ||
54 | otherwise. Also be good for the environment and stay healthy. | ||
55 | |||
56 | ]]; | ||
57 | } | ||
58 | return config | ||