404 Error Jitsi Intergration

Hi Everyone

I have installed Jitsi Integration app in Nextcloud set following parameters:

image

But it gives error when click on Join

image

Following is the error:

image

Please advise,

We used uses username password to initiate meetings on meet.mydomain.com. And it works without any issue. But it is not working with nextcloud

Well the biggest unanswered question is: what’s the version of your NC-instance?

Its Nextcloud 24.0.7, Jitsi app does not prompt for username and password.

JWT is working perfectly, but it still gives 404 error, I have defined JWT Secret and JWT App ID.

Please advise

Well as you posted a GitHub issue this will mark this thread as solved.

I recommend though to add a lot of detailed informations to your issue. Just to avoid lengthly questions for your setup.

@Valdnet perhaps you could have a peek there, please?

Thank you :slight_smile:

actually it seems like issue at Jitsi app since it shows me 404 error means app is redirects to a page that does not exist.

Redirect URL after clicking on Join:

https://nexclouddomain.com/index.php/apps/jitsi/rooms/f2151c41-6239-4762-8d5c-0da6f7b77d0d/TestMeeting

Hello

This issue has been resolved, it was issue at Jitsi apache host configuration. Jitsi apache configuration by defaul cannot handly “-” or special characters. Nextcloud plugin generates special characters in url when sends request to jitsi. To make it work we have added following at the end of virtual host file of jitsi (apache config)

RewriteCond %{REQUEST_URI} ^/http-bind
RewriteRule ^ - [END]
RewriteRule ^/([a-zA-Z0-9_-]+)$ /index.html

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.