summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorChristoph <ckluente@thoughtworks.com>2016-01-20 11:12:56 +0100
committerChristoph Kluenter <ckluente@thoughtworks.com>2016-01-21 10:40:56 +0100
commit50dc1b0b8e4a1c28ce13d2e761e527afd68f14c0 (patch)
tree11c7b297ce94f7557c03418e89d3d34efe0c0ae8 /Vagrantfile
parentad3bf4a1e0560047f65967d660552330e875e00e (diff)
forward port to pixelated
pixelated needs to be accessible when running inside vagrant problem is, that we can't add the forwarding anywhere else because vagrant always overwrites virtualbox settings.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 82863c42..ba4cf595 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -31,6 +31,8 @@ Vagrant.configure("2") do |box|
# forward leap_web ports
config.vm.network "forwarded_port", guest: 443, host:4443
+ # forward pixelated ports
+ config.vm.network "forwarded_port", guest: 8080, host:8080
end
box.vm.define :"wheezy", autostart: false do |config|