From e43c80144547166865c02bfe1ba4b9765cd83de8 Mon Sep 17 00:00:00 2001 From: Aaron van Meerten Date: Tue, 29 Oct 2024 12:08:39 -0500 Subject: [PATCH] feat(jibri,jicofo,jvb): custom hocon support via include for components that support it --- jibri/rootfs/defaults/jibri.conf | 2 ++ jicofo/rootfs/defaults/jicofo.conf | 2 ++ jvb/rootfs/defaults/jvb.conf | 2 ++ 3 files changed, 6 insertions(+) diff --git a/jibri/rootfs/defaults/jibri.conf b/jibri/rootfs/defaults/jibri.conf index 8f56d4481f..c3faaa2d27 100644 --- a/jibri/rootfs/defaults/jibri.conf +++ b/jibri/rootfs/defaults/jibri.conf @@ -89,3 +89,5 @@ jibri { } include "xmpp.conf" + +include "custom-jibri.conf" diff --git a/jicofo/rootfs/defaults/jicofo.conf b/jicofo/rootfs/defaults/jicofo.conf index 61148cd885..2480dd4eb0 100644 --- a/jicofo/rootfs/defaults/jicofo.conf +++ b/jicofo/rootfs/defaults/jicofo.conf @@ -298,3 +298,5 @@ jicofo { } } + +include "custom-jicofo.conf" diff --git a/jvb/rootfs/defaults/jvb.conf b/jvb/rootfs/defaults/jvb.conf index f53bf5f544..b5c548a260 100644 --- a/jvb/rootfs/defaults/jvb.conf +++ b/jvb/rootfs/defaults/jvb.conf @@ -147,3 +147,5 @@ ice4j { } } } + +include "custom-jvb.conf"