Hi, I created a test application with meteor create test and have only modified the test.js file to look like this.
var conn = DDP.connect("http://www.asteroidbelt.io");
Meteor.setInterval(()=>{
console.log(conn.status());
}, 5000);
If you run the above code you’ll see that the client can connect just fine but the server is unable to connect at all and is always stuck in waiting.
http://www.asteroidbelt.io is sitting behind an nginx reverse proxy but I didn’t think that would have any effect. Does anyone have any ideas what could be the issue?