Rank 1: Thread
Hello. Is it possible to use the realtime subscriptions, when the self-hosted instance is exposed via cloudflare tunnels? There is no additional proxy.
I am using latest SDK for next.js and when i try to subscribe to a particular table:
const subString = Channel.tablesdb("<db_id>").table("<table_id>");const sub = realtime.subscribe(subString, response => { console.log(response.payload);});seems like it does not receive any updates. The state, when logged to console, is 'pending', and no operations in that table can trigger the sub.
I tried setting the
.setEndpointRealtime("wss://myappwriteinstance.com/v1/realtime")but this did not work either.