listen on ipv6
This commit is contained in:
parent
e2bdda1720
commit
37d2d98526
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ async fn main() {
|
|||
.route("/", get(get_index))
|
||||
.route("/:id", get(get_item).post(post_item).put(post_item))
|
||||
.with_state(state);
|
||||
axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())
|
||||
axum::Server::bind(&"[::]:3000".parse().unwrap())
|
||||
.serve(app.into_make_service())
|
||||
.await
|
||||
.unwrap();
|
||||
|
|
Loading…
Reference in a new issue