Skip to content

Commit 254001f

Browse files
authored
Merge pull request #5 from WyriHaximusNet/listen-on-non-localhost-port
Listen on non-localhost address
2 parents 659da3f + f5c10cd commit 254001f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ lazy_static! {
3535
#[tokio::main]
3636
async fn main() {
3737
register_custom_metrics();
38-
let addr = ([127, 0, 0, 1], 8080).into();
38+
let addr = ([0, 0, 0, 0], 16289).into();
3939
println!("Listening on http://{}", addr);
4040

4141
tokio::task::spawn(data_collector());

0 commit comments

Comments
 (0)