From 3530f865bb9366278a6afcd41f4aedfacf1e8a66 Mon Sep 17 00:00:00 2001 From: Michael Rosenberg Date: Mon, 12 Sep 2022 03:26:55 -0400 Subject: [PATCH] Made prod bind to 0.0.0.0 --- scripts/prod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prod.sh b/scripts/prod.sh index 8efef08..97d856f 100755 --- a/scripts/prod.sh +++ b/scripts/prod.sh @@ -7,7 +7,7 @@ RUSTFLAGS=--cfg=web_sys_unstable_apis trunk build --release --public-url /assets popd pushd server -cargo run --release -- --port 9382 +cargo run --release -- --port 9382 --addr 0.0.0.0 popd # Full backend options. You can get these by running `cargo run --release -- --help` in server/