0

On a small project we use Vagrant for development environments.

Given the simplicity of the setup, we are considering using it for production since it's a small project with low traffic.

I know I can take a classic server, fire Vagrant and re-route th 80 port to the virtual machine, but I wonder if a more appropriate solution exist. Like a hosting where you could deploy a Vagrant machine without having a "host" to maintain: only the virtual machine would be accessible.

Matthieu Napoli
  • 421
  • 1
  • 5
  • 11
  • PHP + Apache to serve it. But the whole point of Vagrant (that I love) is that the hosting don't care about what's in there. I can install whatever I want. I also have NodeJS project that I'd love to be able to deploy like that. That's so easy once everything is set up. I hate doing sysadmin. – Matthieu Napoli May 31 '13 at 18:10

1 Answers1

0

With Vagrant 2 you can deploy to cloud hosting providers like AWS. You shouldn't need to modify your Vagrantfile too much to achieve this.

mc0e
  • 5,866
  • 18
  • 31