Commit 652d7a2713f4a4ecc69f073c99f6cfe27dacfdcb
1 parent
7b39b10c
Exists in
master
and in
90 other branches
Vagrantfile: do not redirect any ports
We are using private networking anyway, so we can access the machines directly.
Showing
1 changed file
with
0 additions
and
2 deletions
Show diff stats
Vagrantfile
... | ... | @@ -29,7 +29,5 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
29 | 29 | end |
30 | 30 | config.vm.define 'reverseproxy' do |reverseproxy| |
31 | 31 | reverseproxy.vm.network 'private_network', ip: ips['reverseproxy'] |
32 | - reverseproxy.vm.network 'forwarded_port', guest: 80, host: 8080 | |
33 | - reverseproxy.vm.network 'forwarded_port', guest: 443, host: 8443 | |
34 | 32 | end |
35 | 33 | end | ... | ... |