RocketChat / Rocket.Chat

The communications platform that puts data protection first.
https://rocket.chat/
Other
40.35k stars 10.48k forks source link

app jitsi creates urls with hyphen which leads to 404 at jitsi #11995

Open himpierre opened 6 years ago

himpierre commented 6 years ago

Description:

App Jitsi (/jitisi <--- typo?) creates Jitsi URLs with hyphens which leads to 404 at jitsi

Steps to reproduce:

  1. enter /jitsi
  2. get a url like Join the video call: https://jit.si/Cgp24ud5ioNszeHgRCgp24ud5ioNszeHgR-Cgp24ud5ioNszeHgR
  3. click on urls
  4. jitsi reports 404

Expected behavior:

entering room.

Actual behavior:

404

Server Setup Information:

himpierre commented 6 years ago

More info: https://github.com/jitsi/jitsi-meet/issues/312

rasos commented 5 years ago

Confirmed, applying different nginx config in your Jitsi Meet server solves the problem:

    # location ~ ^/([a-zA-Z0-9=\?]+)$ {
    #    rewrite ^/(.*)$ / break;
    # }

    location / {
        ssi on;
        try_files $uri /index.html;
    }

Source: https://github.com/jitsi/jitsi-meet/issues/312#issuecomment-354418529