From 896d2b9f0c2ec648329fa91641a0bbca249f9bfe Mon Sep 17 00:00:00 2001 From: Tho Neyugn Date: Fri, 18 Apr 2025 22:28:30 +0100 Subject: [PATCH] Correct usage of backend flag in README.md backend flag was used for forwarding traffic instead of proxy flag since this commint 4f33489. We should update the demo command to avoid any confusion --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b4d2fc5..6e0da314 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ $ go install github.com/jpillora/chisel@latest A [demo app](https://chisel-demo.herokuapp.com) on Heroku is running this `chisel server`: ```sh -$ chisel server --port $PORT --proxy http://example.com +$ chisel server --port $PORT --backend http://example.com # listens on $PORT, proxy web requests to http://example.com ```