Make bind address configurable
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
48c5b5b7d5
commit
750ede9f21
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ async fn main() -> std::io::Result<()> {
|
||||||
.app_data(Data::clone(&data))
|
.app_data(Data::clone(&data))
|
||||||
.service(paste_render)
|
.service(paste_render)
|
||||||
})
|
})
|
||||||
.bind(("0.0.0.0", 8080))?
|
.bind(env::var("BIND_ADDRESS").unwrap_or("0.0.0.0:8080".to_string()))?
|
||||||
.run()
|
.run()
|
||||||
.await
|
.await
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue