expose Mira via localtunnel / ngrok
Nov 29 2020 | 12:56 pm
Hello,
I'm trying to expose a simple max patch (bangs and message boxes) via mira outside the local network.
I'm aware of portforwarding issues (e.g., https://youtu.be/NUbr4IPSDz4), I've been trying the 07-tunneling example in the Xebra.js package, and I could successfully expose the max patch via virtual network such as ZeroTier, although the last solution requires that all the clients sign in the network.
Instead, I need to provide the user with a direct URL. My current attempts are the following:
- Using localtunnel: lt -p 8086 -s webinterface -o
I open a tunnel to mira on port 8086 and open the browser at URL https://webinterface.localtunnel.me
The connection page to miraweb is correctly displayed, yet when I try to connect, I have the following errors
- Mixed Content: The page at 'https://webinterface.loca.lt/' was loaded over HTTPS, but attempted to connect to the insecure WebSocket endpoint 'ws://webinterface.loca.lt:8086/'. This request has been blocked; this endpoint must be available over WSS.
- Uncaught DOMException: Failed to construct 'WebSocket': An insecure WebSocket connection may not be initiated from a page loaded over HTTPS.
localtunnel returns an HTTPS address, so I tried using ngrok for http only
- Using ngrok: ngrok http 8086
ngrok returns both http and https links. I open the http link, the mira connection page is correctly displayed, yet the connection times out
- WebSocket connection to 'ws://a166affc8f13.ngrok.io:8086/' failed: Error in connection establishment: net::ERR_CONNECTION_TIMED_OUT
I think there might be different issues at stake (first, I'm not an expert I must say), and I cannot figure out any workaround at the moment.
Any help / hint / comment is really appreciated.
Best,
Stefano