Compare commits

...

1 Commits
main ... ipv6

Author SHA1 Message Date
Cadey Ratio adb0ebccf1 enable ipv6 support
Signed-off-by: Christine Dodrill <me@christine.website>
2021-04-01 19:36:04 -04:00
1 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,8 @@ extern crate tracing;
use color_eyre::eyre::Result;
use hyper::{header::CONTENT_TYPE, Body, Response};
use prometheus::{Encoder, TextEncoder};
use std::net::IpAddr;
use std::str::FromStr;
use std::sync::Arc;
use warp::{path, Filter};
@ -234,7 +236,8 @@ async fn main() -> Result<()> {
warp::serve(site)
.run((
[0, 0, 0, 0],
IpAddr::from_str(&std::env::var("HOST").unwrap_or("::".into()))
.expect("can't parse bindhost"),
std::env::var("PORT")
.unwrap_or("3030".into())
.parse::<u16>()