diff options
author | Christoph <ckluente@thoughtworks.com> | 2016-01-20 11:12:56 +0100 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2016-01-21 10:40:56 +0100 |
commit | 50dc1b0b8e4a1c28ce13d2e761e527afd68f14c0 (patch) | |
tree | 11c7b297ce94f7557c03418e89d3d34efe0c0ae8 | |
parent | ad3bf4a1e0560047f65967d660552330e875e00e (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.
-rw-r--r-- | Vagrantfile | 2 |
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| |