host changed

This commit is contained in:
Xsivax 2021-11-20 00:50:24 +01:00
parent 764f2cb380
commit b6782127a3

View file

@ -24,7 +24,7 @@ async fn main() -> std::io::Result<()> {
.route("/cyberpreneur", web::get().to(route::cyber))
.route("/offgrid", web::get().to(route::off))
})
.bind("127.0.0.1:5000")?
.bind("0.0.0.0:5000")?
.run()
.await
}