aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index b685bb5..d24ce9d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -1,9 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
+# :mode=ruby:
Vagrant.configure("2") do |config|
- config.vm.box = "vagrant-archlinux-2013-8"
- config.vm.box_url = "https://googledrive.com/host/0B_BLFE4aPn5zUVpyaHdLanVnMTg/vagrant-archlinux-2013-8.box"
+ config.vm.box = "bento/freebsd-10.3"
+ config.vm.guest = :freebsd
+ config.vm.network :forwarded_port, host: 3000, guest: 3000
config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
- config.vm.network :forwarded_port, host: 4567, guest: 80
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ vendor/bundle/]
end