From 2cc958273ea774768b6be681b3e19629a0cca322 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 23 Oct 2022 12:00:34 +0200 Subject: Indexer: Listen on 0.0.0.0 --- indexer/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indexer') diff --git a/indexer/src/main.rs b/indexer/src/main.rs index 5af53cd..17c71ec 100644 --- a/indexer/src/main.rs +++ b/indexer/src/main.rs @@ -11,7 +11,7 @@ struct AppState { async fn main() -> std::io::Result<()> { println!("Hello, world! Im the indexer!"); - serve_http_endpoint("127.0.0.1", 4444).await + serve_http_endpoint("0.0.0.0", 4444).await } async fn serve_http_endpoint(address: &str, port: u16) -> std::io::Result<()> { -- cgit 1.4.1