From d9486290c25f7ab6a6ec4186c28f5d719d151c45 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO <ynerant@crans.org> Date: Thu, 4 Mar 2021 11:07:47 +0100 Subject: [PATCH] [jitsi] Prepare Jitsi role Signed-off-by: Yohann D'ANELLO <ynerant@crans.org> --- hosts | 5 +++++ plays/jitsi.yml | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100755 plays/jitsi.yml diff --git a/hosts b/hosts index 546127cf..c95de5ce 100644 --- a/hosts +++ b/hosts @@ -26,6 +26,7 @@ sputnik.adm.crans.org [certbot:children] dovecot gitlab +jitsi mailman radius # We use certbot to manage LE certificates reverseproxy @@ -69,6 +70,9 @@ horde.adm.crans.org [irc] irc.adm.crans.org +[jitsi] +jitsi.adm.crans.org + [keepalived:children] routeurs_vm @@ -93,6 +97,7 @@ charybde.adm.crans.org [nginx:children] django_cas +jitsi mailman reverseproxy roundcube diff --git a/plays/jitsi.yml b/plays/jitsi.yml new file mode 100755 index 00000000..4dbecfec --- /dev/null +++ b/plays/jitsi.yml @@ -0,0 +1,11 @@ +#!/usr/bin/env ansible-playbook +--- +- hosts: jitsi + vars: + certbot: '{{ loc_certbot | default(glob_certbot | default([])) }}' + nginx: '{{ glob_nginx | default({}) | combine(loc_nginx | default({})) }}' + jitsi: '{{ glob_jitsi | default({}) | combine(loc_jitsi | default({})) }}' + roles: + - jitsi + - certbot + - nginx -- GitLab