Skip to content

Instantly share code, notes, and snippets.

@PragmaticEd
PragmaticEd / Vagrantfile
Created July 21, 2016 13:22 — forked from spacecowb0y/Vagrantfile
Vagrant config to setup a rvm + ruby + rails + passenger + nginx + mysql.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "precise32"
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
config.vm.network :forwarded_port, guest: 3000, host: 3000
config.vm.hostname = "ruby-dev-server"
config.vm.provision :shell, path: "install.sh"