-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathVagrantfile
More file actions
24 lines (19 loc) · 726 Bytes
/
Vagrantfile
File metadata and controls
24 lines (19 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- mode: ruby -*-
# vi: set ft=ruby :
# 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.provider :virtualbox do |vb|
vb.gui=true
end
config.vm.box = "systers-vms-dev"
# config.vm.box_url = "../box/pc-web-05192014-i386.box"
config.vm.box_url = "http://54.183.32.240/vagrant/box/systers-vms.box"
Vagrant.configure("2") do |config|
config.vm.network "forwarded_port", guest: 80, host: 8080,
auto_correct: true
end
config.vm.network "forwarded_port", guest: 8000, host:8001
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.network "public_network"
end