From 47d974d88cba7d1e70a88ea83f65394e96787cc1 Mon Sep 17 00:00:00 2001 From: Aaron van Meerten Date: Tue, 29 Oct 2024 12:12:34 -0500 Subject: [PATCH] feat(jibri,jicofo,jvb): custom hocon support via include for components that support it (#1960) --- 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 8f56d44..c3faaa2 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 61148cd..2480dd4 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 f53bf5f..b5c548a 100644 --- a/jvb/rootfs/defaults/jvb.conf +++ b/jvb/rootfs/defaults/jvb.conf @@ -147,3 +147,5 @@ ice4j { } } } + +include "custom-jvb.conf"