|
@@ -38,6 +38,11 @@ unlimited_jids = {
|
38
|
38
|
"jvb@auth.jitmeet.example.com"
|
39
|
39
|
}
|
40
|
40
|
|
|
41
|
+-- https://prosody.im/doc/modules/mod_smacks
|
|
42
|
+smacks_max_unacked_stanzas = 5;
|
|
43
|
+smacks_hibernation_time = 60;
|
|
44
|
+smacks_max_old_sessions = 1;
|
|
45
|
+
|
41
|
46
|
VirtualHost "jitmeet.example.com"
|
42
|
47
|
authentication = "jitsi-anonymous" -- do not delete me
|
43
|
48
|
-- Properties below are modified by jitsi-meet-tokens package config
|
|
@@ -58,6 +63,7 @@ VirtualHost "jitmeet.example.com"
|
58
|
63
|
-- we need bosh
|
59
|
64
|
modules_enabled = {
|
60
|
65
|
"bosh";
|
|
66
|
+ "smacks";
|
61
|
67
|
"ping"; -- Enable mod_ping
|
62
|
68
|
"speakerstats";
|
63
|
69
|
"external_services";
|
|
@@ -127,6 +133,13 @@ VirtualHost "auth.jitmeet.example.com"
|
127
|
133
|
authentication = "internal_hashed"
|
128
|
134
|
smacks_hibernation_time = 15;
|
129
|
135
|
|
|
136
|
+VirtualHost "recorder.jitmeet.example.com"
|
|
137
|
+ modules_enabled = {
|
|
138
|
+ "smacks";
|
|
139
|
+ }
|
|
140
|
+ authentication = "internal_hashed"
|
|
141
|
+ smacks_max_old_sessions = 2000;
|
|
142
|
+
|
130
|
143
|
-- Proxy to jicofo's user JID, so that it doesn't have to register as a component.
|
131
|
144
|
Component "focus.jitmeet.example.com" "client_proxy"
|
132
|
145
|
target_address = "focusUser@auth.jitmeet.example.com"
|