Skip to content

Commit

Permalink
use processed uri
Browse files Browse the repository at this point in the history
  • Loading branch information
3mcd committed May 22, 2024
1 parent 44f09cb commit 55c9b9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integrations/evaluations-proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ http {
location / {
rewrite /intg/evaluations/(.*) /$1 break;

proxy_pass https://backend/intg/evaluations$request_uri;
proxy_pass https://backend/intg/evaluations$uri$is_args$args;

proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
Expand Down
2 changes: 1 addition & 1 deletion integrations/submissions-proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ http {
location / {
rewrite /intg/submissions/(.*) /$1 break;

proxy_pass https://backend/intg/submissions$request_uri;
proxy_pass https://backend/intg/submissions$uri$is_args$args;

proxy_set_header Host $host;
proxy_set_header X-Forwarded-Host $host;
Expand Down

0 comments on commit 55c9b9a

Please sign in to comment.