From 63c58575924fc5a9ea2aa955b7c9aed122dfdc01 Mon Sep 17 00:00:00 2001 From: Sebastian Oliva Date: Mon, 1 Feb 2016 18:09:50 -0600 Subject: [PATCH] Adding port forwarding for statsd --- Vagrantfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 618ce77..2271c67 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -17,6 +17,8 @@ Vagrant.configure("2") do |config| # accessing "localhost:8080" will access port 80 on the guest machine. config.vm.network :forwarded_port, guest: 80, host: 8080 config.vm.network :forwarded_port, guest: 443, host: 8443 + # Port forwarding for Statsd + config.vm.network "forwarded_port", guest: 8125, host: 8125, protocol: "udp" # Create a private network, which allows host-only access to the machine # using a specific IP.