aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2017-12-10 16:25:44 +0100
committerHarald Eilertsen <haraldei@anduin.net>2017-12-10 16:25:44 +0100
commitc94a41bd146c92c4f1a7487671a7b08a5454012a (patch)
tree8d56be932decf7524ee5de2c328365629e0f6303
parentd70626928b34793489dfcacb5129f4b831c1854e (diff)
downloadhmnoweb-c94a41bd146c92c4f1a7487671a7b08a5454012a.tar.gz
hmnoweb-c94a41bd146c92c4f1a7487671a7b08a5454012a.tar.bz2
hmnoweb-c94a41bd146c92c4f1a7487671a7b08a5454012a.zip
vagrant: Forward local port 3000 to the vagrant box.
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 21fd8f7..d24ce9d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -5,7 +5,7 @@
Vagrant.configure("2") do |config|
config.vm.box = "bento/freebsd-10.3"
config.vm.guest = :freebsd
- config.vm.network :forwarded_port, host: 4567, guest: 80
+ config.vm.network :forwarded_port, host: 3000, guest: 3000
config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ vendor/bundle/]
end