diff options
author | Shav Kinderlehrer <[email protected]> | 2024-04-08 07:24:32 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2024-04-08 07:24:32 -0400 |
commit | c733d4c98f440ee48817e1901c4bb1938fbb1861 (patch) | |
tree | 863f46567282edb2c230608433fc298bb4a28635 | |
parent | a4193f830fe39a6aceec0c361d6d88447022ac63 (diff) | |
download | chela-c733d4c98f440ee48817e1901c4bb1938fbb1861.tar.gz chela-c733d4c98f440ee48817e1901c4bb1938fbb1861.zip |
Fix example nginx config issue in README.md
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'; |