joel1di1
joel1di1

Reputation: 773

How to secure communication between two rails (on heroku) applications?

I have two rails applications, hosted on heroku, that need to communicate.

For now, everything is done in a RESTful way, using ActiveResource when it's relevant.

Now, the problem is to secure these communications, to prevent that someone sniff the network and then make some call and has access to informations or make some actions.

How do you do that?

Tx

Upvotes: 2

Views: 489

Answers (2)

Chris Nicola
Chris Nicola

Reputation: 14574

Realize this is an old question, but have you considered using some sort of messaging or queue? Redis is one thing that comes to mind.

Upvotes: 0

Andy Waite
Andy Waite

Reputation: 11076

A simple approach would be REST over HTTPS.

Upvotes: 2

Related Questions