diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-23 12:00:34 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-10-23 12:00:34 +0200 |
commit | 2cc958273ea774768b6be681b3e19629a0cca322 (patch) | |
tree | 252c9fd3600402840a3bdfb51a92c83cb5262f77 | |
parent | Indexer: Implement basic reverse index searching and adding (diff) | |
download | OSSE-2cc958273ea774768b6be681b3e19629a0cca322.tar.gz OSSE-2cc958273ea774768b6be681b3e19629a0cca322.tar.bz2 OSSE-2cc958273ea774768b6be681b3e19629a0cca322.zip |
Indexer: Listen on 0.0.0.0
-rw-r--r-- | indexer/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<()> { |