diff options
author | Christoph <ckluente@thoughtworks.com> | 2016-01-20 13:24:48 +0100 |
---|---|---|
committer | Christoph <ckluente@thoughtworks.com> | 2016-01-20 13:24:48 +0100 |
commit | 63f32607b663d8878c72f8d656fd5577df3fbd5d (patch) | |
tree | 06e1e9c6c73615b69b026fe392b09e473af53687 | |
parent | 9718a6cf697ffeb79dcafbb2ce35dbdd6f43f9b4 (diff) |
leap redirects port 80 to an invalid url
on vagrant, we use example.org as domain and all
requests to http are redirected to https://example.org
thats why this does not work on vagrant. we connect to
localhost:8080 and get redirected to https://example.org
thats why we do not need this port forwarded
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index e6699424..82863c42 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -30,7 +30,6 @@ Vagrant.configure("2") do |box| config.ssh.username = "vagrant" # forward leap_web ports - config.vm.network "forwarded_port", guest: 80, host:8080 config.vm.network "forwarded_port", guest: 443, host:4443 end @@ -57,7 +56,6 @@ Vagrant.configure("2") do |box| config.ssh.username = "vagrant" # forward leap_web ports - config.vm.network "forwarded_port", guest: 80, host:8080 config.vm.network "forwarded_port", guest: 443, host:4443 end end |