I have 3 meteor applications on three different servers. One of them has all the data the 2 others use. I am using ddp.connect()
.
So the three applications are working just fine, but my concern now is security. I have read about DDP after thinking about security and I didn't find any security options for it. It just allows anyone to connect to the server and get the data using this protocol. How do I prevent this while allowing the 2 others to connect ?
The other thing is that it uses http requests (post, get), but my apps are now over https and I want to make ddp requests to be over https is that possible ?
I feel like I'm missing something pretty obvious but I can't find it from google.