summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-09-28 13:29:43 +0200
committervarac <varacanero@zeromail.org>2015-09-28 13:29:43 +0200
commitdc87df7ca0eac492fcd65638b8e72b6e02f7bb4f (patch)
treea2cd21bbdfb1d109753c2ead3d4d4452f65c421a /Vagrantfile
parent023d62631eff760237dd7493d9fded1c9d8bfc95 (diff)
[feat] Vagrant: forward leap_web ports 443 ad 80
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index c9c68284..ba5451aa 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -9,6 +9,11 @@ Vagrant.configure("2") do |vagrant_config|
config.vm.box = "LEAP/wheezy"
#config.vm.network :private_network, ip: "10.5.5.102"
+
+ # forward leap_web ports
+ config.vm.network "forwarded_port", guest: 80, host:8080
+ config.vm.network "forwarded_port", guest: 443, host:4443
+
config.vm.provider "virtualbox" do |v|
v.memory = 1024
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]