aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2024-04-08 07:24:32 -0400
committerShav Kinderlehrer <[email protected]>2024-04-08 07:24:32 -0400
commitc733d4c98f440ee48817e1901c4bb1938fbb1861 (patch)
tree863f46567282edb2c230608433fc298bb4a28635 /README.md
parenta4193f830fe39a6aceec0c361d6d88447022ac63 (diff)
downloadchela-c733d4c98f440ee48817e1901c4bb1938fbb1861.tar.gz
chela-c733d4c98f440ee48817e1901c4bb1938fbb1861.zip
Fix example nginx config issue in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files 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';