Listen for all hosts, not just localhost

feat/new
Bradlee Speice 2017-05-28 14:22:35 -04:00
parent 94b9733730
commit e407cb251d
1 changed files with 1 additions and 1 deletions

View File

@ -82,5 +82,5 @@ fn main() {
remote: get "/:remote" => remote remote: get "/:remote" => remote
); );
Iron::new(router).http("localhost:3000").unwrap(); Iron::new(router).http("0.0.0.0:3000").unwrap();
} }