From b8dad2d657ceaaf61e6da4baffacce2460194baf Mon Sep 17 00:00:00 2001 From: Ed <61695425+edleeman17@users.noreply.github.com> Date: Fri, 26 Jan 2024 09:30:16 +0000 Subject: [PATCH] Update README.md (#2011) Updated README.md to prevent Nginx redirecting the browser to the local address of the machine --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cc0cbb9a..5ff9bcde 100644 --- a/README.md +++ b/README.md @@ -510,7 +510,8 @@ server { server_name app.mydomain.com; location / { - proxy_pass http://localhost:7777; + proxy_pass http://localhost:7777; + proxy_set_header Host $host; } } ```