From e407cb251dd0470373152513e758e0e1f3dae796 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sun, 28 May 2017 14:22:35 -0400 Subject: [PATCH] Listen for all hosts, not just localhost --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b193346..5986e74 100644 --- a/src/main.rs +++ b/src/main.rs @@ -82,5 +82,5 @@ fn main() { remote: get "/:remote" => remote ); - Iron::new(router).http("localhost:3000").unwrap(); + Iron::new(router).http("0.0.0.0:3000").unwrap(); }