Commit 59bdea424328536a6479d7109c5b03f14ca7e8f2
1 parent
2fee2a29
Exists in
master
and in
13 other branches
Adding port mapping for 5280 on vagrant
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
Vagrantfile
| @@ -21,6 +21,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | @@ -21,6 +21,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
| 21 | # accessing "localhost:8080" will access port 80 on the guest machine. | 21 | # accessing "localhost:8080" will access port 80 on the guest machine. |
| 22 | config.vm.network :forwarded_port, guest: 80, host: 8080 | 22 | config.vm.network :forwarded_port, guest: 80, host: 8080 |
| 23 | config.vm.network :forwarded_port, guest: 7000, host: 8000 | 23 | config.vm.network :forwarded_port, guest: 7000, host: 8000 |
| 24 | + config.vm.network :forwarded_port, guest: 5280, host: 5280 | ||
| 24 | 25 | ||
| 25 | # Create a private network, which allows host-only access to the machine | 26 | # Create a private network, which allows host-only access to the machine |
| 26 | # using a specific IP. | 27 | # using a specific IP. |