install jitsi-meet

This commit is contained in:
2022-02-20 22:41:13 +01:00
parent eef1d72683
commit 47f59d9e85
5 changed files with 75 additions and 25 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
JITSI_FQDN=$1
cat << EOF | sudo debconf-set-selections
jitsi-videobridge jitsi-videobridge/jvb-hostname string "${JITSI_FQDN}"
jitsi-meet jitsi-meet/jvb-serve boolean false
jitsi-meet-prosody jitsi-videobridge/jvb-hostname string "${JITSI_FQDN}"
jitsi-meet-web-config jitsi-meet/cert-choice select I want to use my own certificate
jitsi-meet-web-config jitsi-meet/cert-path-crt string /etc/ssl/"${JITSI_FQDN}".crt
jitsi-meet-web-config jitsi-meet/cert-path-key string /etc/ssl/"${JITSI_FQDN}".key
EOF