Hacker News new | ask | show | jobs
by robax 2670 days ago
This comment hits the nail on the head for me.

Pick a cloud provider. Spin up an instance that will be your server. Spin up an instance that will be your DB. Make your DB only listen to your server instance. Make your server instance only listen on port 80/443.

As long as your app isn't vulnerable to SQL injection type stuff, that's probably enough security for an MVP, and this kind of set up puts you on the right track for scalability.

Source: am DevOps.

1 comments

Me too :]