Disable HTTPS for Local Testing

Hi dear Bubble community,
I am testing a real time API, and creating websocket with external server and javascript and html element. currently, I faced an error related to websocket connection.
The error message indicates that my Bubble app is being blocked from connecting to my external websocket url because it’s considered insecure content . This happens because Bubble app is being served over HTTPS (a secure connection), but the WebSocket server is on ws:// (an insecure connection). When loading a page over HTTPS, the browser blocks mixed content (any HTTP or insecure connection requests) for security reasons.

Is it possible to temporarily disable HTTPS? As I am testing this API and for deployment I will use AWS cloud.
Also, other solutions will be appreciated a lot.