Setting up vortex with self-hosted give InvalidOperation error #211
-
Hello, I could setup revoltchat through docker with https and everything runs smoothly on this side. I then decided to use vortex, so builded vortex image, then configured .env and my vhost to make the connection. I can access the url https://comm.digitalsavior.fr/vortex and https://comm.digitalsavior.fr/vortex-ws seems functionnal too as it gives same output as https://comm.digitalsavior.fr/ws when accessing it. Though when i try to join a vocal chat, I get 400 bad request "InvalidOperation" immediately after clicking call button in a channel. Here is my vhost : <VirtualHost *:443>
Here my .env and my docker file part about vortex : REVOLT voice server (Vortex)vortex: Is there anything that seems off and would cause this issue ? (ofc ports are opened in router and firewall of server both tcp/udp) thanks alot! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Your webserver configuration appears to be misconfigured. I don't know how it's routing as I don't do Apache, but the room management endpoint ( |
Beta Was this translation helpful? Give feedback.
Your webserver configuration appears to be misconfigured. I don't know how it's routing as I don't do Apache, but the room management endpoint (
/room/roomid
as should be seen from vortex) returns a Not Found, suggesting that when delta tries to create a new room by calling/vortex/room/roomid
, it fails because Apache probably isn't correctly stripping off thevortex/
part, thus erroring out withInvalidOperation