From b6305826be8ad734635ccef38c5eb53c0837be02 Mon Sep 17 00:00:00 2001 From: Brad Lugo Date: Fri, 12 Jan 2018 16:32:09 -0600 Subject: [PATCH] Update Vagrantfile.example to forward port 8080 (#9732) There was a change in how the code is run locally and part of this change included using port 8080. This change includes the port forwarding for said port in the example file for Vagrant --- Vagrantfile.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile.example b/Vagrantfile.example index 061c20f277..5507219c7f 100644 --- a/Vagrantfile.example +++ b/Vagrantfile.example @@ -16,5 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.hostname = "habitrpg" config.vm.network "forwarded_port", guest: 3000, host: 3000, auto_correct: true config.vm.usable_port_range = (3000..3050) + config.vm.network "forwarded_port", guest: 8080, host: 8080, auto_correct: true + config.vm.usable_port_range = (8080..8130) config.vm.provision :shell, :path => "vagrant_scripts/vagrant.sh" end