We are in the process of design a new application which based on a hybrid cloud architecture. We want to keep the data center centralized and managed in-house. And the appserver could be hosted by one of the service providers like EC2 Amazon. I am looking some best practice around data connection between the cloud and datacenter and how secure it. ~Thanks.
A:
Cloud computing often uses REST style web services for access to data.
For securing REST have a look at this question on stackoverflow:
http://stackoverflow.com/questions/7551/best-practices-for-securing-a-rest-api-web-service
Shiraz Bhaiji
2009-08-16 10:26:43
+1
A:
That's going to create a pretty slow application. I'd strongly recommend having your DB and App servers on the same network.
But if you really can't, then just secure it as you would any public-facing server:
- Lock down to IPs
- Make sure the password is secure
- Potentially change the default port to something non-standard
Noon Silk
2009-08-16 10:30:16