mirror of
https://github.com/YunoHost-Apps/jitsi_ynh.git
synced 2024-09-03 19:35:57 +02:00
metronome.cfg.lua: fix configuration...
This commit is contained in:
parent
02b5750388
commit
efa8c8aec7
1 changed files with 61 additions and 10 deletions
|
@ -1,19 +1,63 @@
|
||||||
component_ports = { __PORT_COMPONENT__ }
|
component_ports = { __PORT_COMPONENT__ }
|
||||||
c2s_require_encryption = false
|
--c2s_require_encryption = false --Why would it be needed?
|
||||||
s2s_secure_auth = false
|
|
||||||
|
|
||||||
plugin_paths = { "__FINAL_PATH__/jitsi-meet-prosody/" }
|
plugin_paths = { "__FINAL_PATH__/jitsi-meet-prosody/" }
|
||||||
|
|
||||||
|
modules_enabled = {
|
||||||
|
|
||||||
|
-- Generally required
|
||||||
|
"roster"; -- Allow users to have a roster. Recommended.
|
||||||
|
"saslauth"; -- Authentication for clients. Recommended if you want to log in.
|
||||||
|
"tls"; -- Add support for secure TLS on c2s/s2s connections
|
||||||
|
"disco"; -- Service discovery
|
||||||
|
|
||||||
|
-- Not essential, but recommended
|
||||||
|
"private"; -- Private XML storage (for room bookmarks, etc.)
|
||||||
|
"vcard"; -- Allow users to set vCards
|
||||||
|
"pep"; -- Allows setting of mood, tune, etc.
|
||||||
|
"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
|
||||||
|
"bidi"; -- Enables Bidirectional Server-to-Server Streams.
|
||||||
|
|
||||||
|
-- Nice to have
|
||||||
|
"version"; -- Replies to server version requests
|
||||||
|
"uptime"; -- Report how long server has been running
|
||||||
|
"time"; -- Let others know the time here on this server
|
||||||
|
"ping"; -- Replies to XMPP pings with pongs
|
||||||
|
"register"; -- Allow users to register on this server using a client and change passwords
|
||||||
|
"stream_management"; -- Allows clients and servers to use Stream Management
|
||||||
|
"stanza_optimizations"; -- Allows clients to use Client State Indication and SIFT
|
||||||
|
"message_carbons"; -- Allows clients to enable carbon copies of messages
|
||||||
|
"mam"; -- Enable server-side message archives using Message Archive Management
|
||||||
|
"push"; -- Enable Push Notifications via PubSub using XEP-0357
|
||||||
|
"lastactivity"; -- Enables clients to know the last presence status of an user
|
||||||
|
"adhoc_cm"; -- Allow to set client certificates to login through SASL External via adhoc
|
||||||
|
"admin_adhoc"; -- administration adhoc commands
|
||||||
|
"bookmarks"; -- XEP-0048 Bookmarks synchronization between PEP and Private Storage
|
||||||
|
"sec_labels"; -- Allows to use a simplified version XEP-0258 Security Labels and related ACDFs.
|
||||||
|
"privacy"; -- Add privacy lists and simple blocking command support
|
||||||
|
|
||||||
|
-- Other specific functionality
|
||||||
|
--"admin_telnet"; -- administration console, telnet to port 5582
|
||||||
|
--"admin_web"; -- administration web interface
|
||||||
|
"bosh"; -- Enable support for BOSH clients, aka "XMPP over Bidirectional Streams over Synchronous HTTP"
|
||||||
|
--"compression"; -- Allow clients to enable Stream Compression
|
||||||
|
--"spim_block"; -- Require authorization via OOB form for messages from non-contacts and block unsollicited messages
|
||||||
|
--"gate_guard"; -- Enable config-based blacklisting and hit-based auto-banning features
|
||||||
|
--"incidents_handling"; -- Enable Incidents Handling support (can be administered via adhoc commands)
|
||||||
|
--"server_presence"; -- Enables Server Buddies extension support
|
||||||
|
--"service_directory"; -- Enables Service Directories extension support
|
||||||
|
--"public_service"; -- Enables Server vCard support for public services in directories and advertises in features
|
||||||
|
--"register_api"; -- Provides secure API for both Out-Of-Band and In-Band registration for E-Mail verification
|
||||||
|
"websocket"; -- Enable support for WebSocket clients, aka "XMPP over WebSockets"
|
||||||
|
|
||||||
|
-- For Jitsi Meet
|
||||||
|
"http_altconnect";
|
||||||
|
}
|
||||||
|
|
||||||
-- domain mapper options, must at least have domain base set to use the mapper
|
-- domain mapper options, must at least have domain base set to use the mapper
|
||||||
muc_mapper_domain_base = "__DOMAIN__";
|
muc_mapper_domain_base = "__DOMAIN__";
|
||||||
|
|
||||||
turncredentials_secret = "__TURN_SECRET__";
|
turn_secret = "__TURN_SECRET__";
|
||||||
|
|
||||||
turncredentials = {
|
|
||||||
{ type = "stun", host = "__DOMAIN__", port = "4446" },
|
|
||||||
{ type = "turn", host = "__DOMAIN__", port = "4446", transport = "udp" },
|
|
||||||
{ type = "turns", host = "__DOMAIN__", port = "443", transport = "tcp" }
|
|
||||||
};
|
|
||||||
|
|
||||||
cross_domain_bosh = false;
|
cross_domain_bosh = false;
|
||||||
consider_bosh_secure = true;
|
consider_bosh_secure = true;
|
||||||
|
@ -37,7 +81,6 @@ VirtualHost "__DOMAIN__"
|
||||||
conference_duration_component = "conferenceduration.__DOMAIN__"
|
conference_duration_component = "conferenceduration.__DOMAIN__"
|
||||||
-- we need bosh
|
-- we need bosh
|
||||||
modules_enabled = {
|
modules_enabled = {
|
||||||
"bosh";
|
|
||||||
"pubsub";
|
"pubsub";
|
||||||
"ping"; -- Enable mod_ping
|
"ping"; -- Enable mod_ping
|
||||||
"speakerstats";
|
"speakerstats";
|
||||||
|
@ -45,6 +88,14 @@ VirtualHost "__DOMAIN__"
|
||||||
"conference_duration";
|
"conference_duration";
|
||||||
}
|
}
|
||||||
c2s_require_encryption = false
|
c2s_require_encryption = false
|
||||||
|
external_services = {
|
||||||
|
["__DOMAIN__"] = {
|
||||||
|
{ type = "stun", port = "4446", trasport = "udp" },
|
||||||
|
{ type = "stun", port = "4446", trasport = "tcp" }
|
||||||
|
{ type = "turn", port = "4446", transport = "udp", turn_secret = "__TURN_SECRET__", turn_ttl = "86400" },
|
||||||
|
{ type = "turns", port = "443", transport = "tcp", turn_secret = "__TURN_SECRET__", turn_ttl = "86400" },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Component "conference.__DOMAIN__" "muc"
|
Component "conference.__DOMAIN__" "muc"
|
||||||
storage = "null"
|
storage = "null"
|
||||||
|
|
Loading…
Reference in a new issue