Skip to content

Commit

Permalink
fix reader setup
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewpeterkort committed Aug 28, 2024
1 parent a12d927 commit 6ab2efa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helm/revproxy/gen3.nginx.conf/local-grip.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
location /grip/reader/ {
location /grip/reader {
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
send_timeout 600s;

rewrite ^/grip/reader/(.*) /$1 break;
proxy_pass http://local-grip.$namespace.svc.cluster.local:8201;
rewrite ^/grip/(.*) /$1 break;
proxy_pass http://local-grip.$namespace.svc.cluster.local:8201/reader/api;
}

location /grip/writer/ {
Expand Down

0 comments on commit 6ab2efa

Please sign in to comment.