From c733d4c98f440ee48817e1901c4bb1938fbb1861 Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Mon, 8 Apr 2024 07:24:32 -0400 Subject: [PATCH] Fix example nginx config issue in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8709332..9ebf79d 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ server { server_name example.com; location / { - proxy_pass http://localhost:3000/; + proxy_pass http://localhost:3000; proxy_set_header X-Real-IP $remote_addr; limit_except GET HEAD { @@ -107,7 +107,7 @@ server { } location /tracking { - proxy_pass http://localhost:3000/; + proxy_pass http://localhost:3000$request_uri; proxy_set_header X-Real-IP $remote_addr; auth_basic 'Restricted';