We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd1e11 commit 0f7bae7Copy full SHA for 0f7bae7
src/main.rs
@@ -14,5 +14,5 @@ fn main() {
14
let mut mount = Mount::new();
15
mount.mount("/", Static::new(Path::new("./")));
16
println!("listening on port {:?}", port);
17
- Iron::new(mount).http(("127.0.0.1", port)).unwrap();
+ Iron::new(mount).http(("0.0.0.0", port)).unwrap();
18
}
0 commit comments