-
Can someone give a short example how to enable authentication for meeting rooms? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok - short answer: After you installed jitsi using the operator project create an additional Example: apiVersion: apps.jit.si/v1alpha1
kind: Jitsi
metadata:
name: foo-jitsi
namespace: jitsi
spec:
domain: meeting.foo.com
ingress:
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
kubernetes.io/ingress.class: "nginx"
enabled: true
tls: true
jibri:
enabled: true
replicas: 1
jvb:
gracefulShutdown: true
strategy:
replicas: 1
type: static
region: europe
timezone: Europe/Berlin
variables:
ENABLE_BREAKOUT_ROOMS: "1"
ENABLE_AUTH: "1"
ENABLE_GUESTS: "1" This example sets a public internet name Next you can open a shell on the
|
Beta Was this translation helpful? Give feedback.
Ok - short answer:
After you installed jitsi using the operator project create an additional
deployment.yaml
file to overwrite settings.Example:
This e…