Hi there,
I have set up a jitsi meet server with docker that works fine as open server. I would like to add authentication for creating rooms following https://github.com/jitsi/docker-jitsi-meet.
What I did in .env is:
ENABLE_AUTH=1
#ENABLE_GUESTS=1
AUTH_TYPE=internal
In the prosody container when running:
prosodyctl --config /config/prosody.cfg.lua register username meet.jitsi password
I get
Error: Account creation/modification not supported.
When I replace meet.jitsi with auth.meet.jitsi I get no error. (maybe this is wrong as well)
I ran service prosody restart afterwards.
But: there is no authentication. The site is still open.
What do I need to do in order to enable authentication? - require authentication for room creation (moderator) and join without user/password as non-moderator.
Thanks and stay healthy!