diff --git a/Vagrantfile b/Vagrantfile index 7de09bfa..de87442a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -109,7 +109,11 @@ Vagrant.configure("2") do |config| # Create a static IP config.vm.network :private_network, ip: server_ip - config.vm.network :forwarded_port, guest: 80, host: 8000 + + # Create a forwarded port mapping which allows access to a specific port + # within the machine from a port on the host machine. In the example below, + # accessing "localhost:8080" will access port 80 on the guest machine. + # config.vm.network "forwarded_port", guest: 80, host: 8080 # Enable agent forwarding over SSH connections config.ssh.forward_agent = true