You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
505 B
12 lines
505 B
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! |
|
VAGRANTFILE_API_VERSION = "2" |
|
|
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
|
config.vm.box = "precise64" |
|
config.vm.box_url = "http://files.vagrantup.com/precise64.box" |
|
config.vm.network :forwarded_port, guest: 80, host: 8080 |
|
config.vm.network :forwarded_port, guest: 443, host: 8443 |
|
config.vm.network :forwarded_port, guest: 3000, host: 3000 |
|
config.vm.provision :shell, path: 'script/provision.sh' |
|
end |
|
|
|
|