Commit 59bdea424328536a6479d7109c5b03f14ca7e8f2

Authored by Sergio Oliveira
1 parent 2fee2a29

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 21 # accessing "localhost:8080" will access port 80 on the guest machine.
22 22 config.vm.network :forwarded_port, guest: 80, host: 8080
23 23 config.vm.network :forwarded_port, guest: 7000, host: 8000
  24 + config.vm.network :forwarded_port, guest: 5280, host: 5280
24 25  
25 26 # Create a private network, which allows host-only access to the machine
26 27 # using a specific IP.
... ...