Problem with displaying knocking list

Hello there,
I have a little problem with lobby feature.

I can see enable lobby button, when i enabled it I think “It Works”, but if someone joins lobby and he get information “Waiting for moderator” or something like this, I cant see the Knocking list. Configuration seems to be good.

We’re using own Wildcard SSL, VM in our own server room running on VMWare, and Jitsi Secure Domain.

Prosody configuration:

that’s because you left the lobby enabled in the authenticated site.

Where I can change this setting? In configuration file or somewhere in application?

in the file you pasted.

Could you indicate where I can find this setting? Are you talking about Virtual Host “auth.jitsi.mydomain.mytld” or about Component “internal.auth.jitsi.mydomain.mytld”.

I don’t recognize the function split in the config file yet.

Edit: Solved, i don’t know where I found the solution, maybe in /usr/share/jitsi-meet-web-config/config.js.

Once i enabled the lobby feature , when a guest ask to join , the moderator don’t see the prompt screen to ‘Allow’ and ‘Reject’ the guest

Can you help me to fix this or any suggestion ?

Can you share your cfg.lua file?

Yes sir this is my cfg.lua

and my probleme is :
Once i enabled the lobby feature , when a guest ask to join , the moderator don’t see the prompt screen to ‘Allow’ and ‘Reject’ the guest . so the guest still wating and i don;t see any message for accept or reject in the moderator screen

any help please ?

New Text Document.txt (4.4 KB)

There are several errors in your configuration.

In this part:

    -- we need bosh
    modules_enabled = {
        "bosh";
        "pubsub";
        "ping"; -- Enable mod_ping
        "speakerstats";
        "turncredentials";
        "conference_duration";
        "muc_lobby_rooms";
    }
    c2s_require_encryption = false
    lobby_muc = "lobby.henceforth.cf"
    main_muc = "conference.henceforth.cf"
    -- muc_lobby_whitelist = { "recorder.henceforth.cf" } -- Here we can whitelist jibri to enter lobby enabled rooms

Remove this:

 c2s_require_encryption = false
        lobby_muc = "lobby.henceforth.cf"
        main_muc = "conference.henceforth.cf"
        -- muc_lobby_whitelist = { "recorder.henceforth.cf" } -- Here we can whitelist jibri to enter lobby enabled rooms

Also, remove this line from that block:

"muc_lobby_rooms";

Then you have this component twice:

Component "conference.henceforth.cf" "muc"
    storage = "memory"
    modules_enabled = {
        "muc_meeting_id";
        "muc_domain_mapper";
        -- "token_verification";
    }

    admins = { "focus@auth.henceforth.cf" }
    muc_room_locking = false
    muc_room_default_public_jids = true

Remove the 2nd occurrence at the end of the file.

And there are two occurrences of this too:

Component "lobby.henceforth.cf" "muc"
    storage = "memory"
    restrict_room_creation = true
    muc_room_locking = false
    muc_room_default_public_jids = true

Delete one.

Thank you sir it’s work now thank you very very much for your help sir

Sir
when i change my file as you suggesded to me it’s works good and i had fixed the probleme but i find another probleme ,when some people join the room i can’t hear them and some times i can’t see them ?

Here is the file following your instruction ?

Any suggestion ? And Thank you again for your help

New Text Document.txt (3.7 KB)