Adding option to brand across services where possible

This commit is contained in:
Ian Roddis
2026-03-23 14:54:16 -03:00
parent 6c914d5b82
commit 72f171e88f
20 changed files with 191 additions and 4 deletions
+15
View File
@@ -11,6 +11,21 @@
- "{{ jitsi_data_dir }}/jicofo"
- "{{ jitsi_data_dir }}/jvb"
- name: Deploy Jitsi custom interface config
ansible.builtin.template:
src: custom-interface-config.js.j2
dest: "{{ jitsi_data_dir }}/web/custom-interface-config.js"
mode: '0644'
notify: restart jitsi
- name: Copy tenant logo to Jitsi watermark
ansible.builtin.copy:
src: "{{ tenant_logo_local_path }}"
dest: "{{ jitsi_data_dir }}/web/watermark.png"
mode: '0644'
when: tenant_logo_local_path | default('') != ''
notify: restart jitsi
- name: Deploy Jitsi docker-compose
ansible.builtin.template:
src: docker-compose.yml.j2
@@ -0,0 +1,6 @@
// Sovereign tenant branding overrides for Jitsi Meet.
// This file is appended to interface_config.js by the Jitsi web container.
interfaceConfig.APP_NAME = '{{ tenant_name }}';
interfaceConfig.NATIVE_APP_NAME = '{{ tenant_name }}';
interfaceConfig.PROVIDER_NAME = '{{ tenant_name }}';
interfaceConfig.BRAND_WATERMARK_LINK = 'https://{{ base_domain }}';
@@ -5,6 +5,7 @@ services:
restart: unless-stopped
environment:
PUBLIC_URL: "https://{{ jitsi_domain }}"
JITSI_WATERMARKLINK: "https://{{ base_domain }}"
XMPP_SERVER: jitsi-prosody
XMPP_DOMAIN: meet.jitsi
XMPP_AUTH_DOMAIN: auth.meet.jitsi