We can control for each domain which page is appearing after a conference in `/etc/jitsi/meet/domain.config.js`
// Enabling the close page will ignore the welcome page redirection when
// a call is hangup.
enableClosePage: true,
In close2.html we can add a redirect to a donation page.
When we set in `/usr/share/jitsi-meet/interface_config.js` the following line:
SHOW_PROMOTIONAL_CLOSE_PAGE: true,
we approach `/usr/share/jitsi-meet/static/close3.html` and can show something else.
We are having pop-up modals in the fairmeeting service since 2025.
We can control for each domain which page is appearing after a conference in `/etc/jitsi/meet/domain.config.js`
// Enabling the close page will ignore the welcome page redirection when
// a call is hangup.
enableClosePage: true,
In close2.html we can add a redirect to a donation page.
When we set in `/usr/share/jitsi-meet/interface_config.js` the following line:
SHOW_PROMOTIONAL_CLOSE_PAGE: true,
we approach `/usr/share/jitsi-meet/static/close3.html` and can show something else.
There are events like readyToClose and videoConferenceLeft which can be used to hide/remove the iframe and present something else, see the [discussion](https://community.jitsi.org/t/redirect-url-on-hangup/29948/15).