From 979b2a14f80f3f14136f16150a71a1445287c920 Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 16 Mar 2020 18:17:27 -0500 Subject: [PATCH] Expose to outside world --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 02db406..5f9a00d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -108,7 +108,7 @@ async fn main() -> Result<(), anyhow::Error> { .service(web::resource("/actor").route(web::get().to(actor_route))) .service(actix_webfinger::resource::<_, RelayResolver>()) }) - .bind("127.0.0.1:8080")? + .bind("0.0.0.0:8080")? .run() .await?; Ok(())