Commit 8438180990c9a73b047c12d4b1a6a1e665970a1e

Authored by Sergio Oliveira
1 parent 928e0ef7

Mapping port (guest 7000 to host 8000)

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
Vagrantfile
... ... @@ -20,7 +20,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
20 20 # within the machine from a port on the host machine. In the example below,
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   - config.vm.network :forwarded_port, guest: 8000, host: 8000
  23 + config.vm.network :forwarded_port, guest: 7000, host: 8000
24 24  
25 25 # Create a private network, which allows host-only access to the machine
26 26 # using a specific IP.
... ...