diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-01-28 17:02:10 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-01-28 17:02:10 +0100 |
commit | ebb772e5ba26944ac002c236d33ef164e91c6a7d (patch) | |
tree | 9f7d683a638957e47fccd021ffb5d44d8db247c9 /app/jitsi/integration/README.md | |
parent | 07765e84561a87a02e4a82a8ea6212f0ffe3b1e3 (diff) | |
download | infrastructure-ebb772e5ba26944ac002c236d33ef164e91c6a7d.tar.gz infrastructure-ebb772e5ba26944ac002c236d33ef164e91c6a7d.zip |
Fix ansible inventory + Fix jicofo's hocon conf + fix jicofo's dockerfile
Diffstat (limited to 'app/jitsi/integration/README.md')
-rw-r--r-- | app/jitsi/integration/README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/jitsi/integration/README.md b/app/jitsi/integration/README.md index 261f71d..315b5de 100644 --- a/app/jitsi/integration/README.md +++ b/app/jitsi/integration/README.md @@ -31,6 +31,13 @@ Base conf: the following is used in videobridge.conf: [jicoco/MucClientConfiguration](https://github.com/jitsi/jicoco/blob/master/jicoco/src/main/java/org/jitsi/xmpp/mucclient/MucClientConfiguration.java) +How the new configuration is read in jicoco: +https://github.com/jitsi/jicoco/blob/master/jicoco-config/src/main/kotlin/org/jitsi/config/JitsiConfig.kt#L83-L91 +They use this library: https://github.com/lightbend/config +We are particularly interested by: https://github.com/lightbend/config#standard-behavior +Using 'application.conf' with classpath does not seem to work. +But, specifying the file path as `-Dconfig.file=/etc/jitsi/jicofo.conf` works! + ## Resources to understand jitsi - [jicofo/debian/postinst](https://github.com/jitsi/jicofo/blob/master/debian/postinst) |