Skip to content

Commit

Permalink
dedupe asset requests
Browse files Browse the repository at this point in the history
  • Loading branch information
3mcd committed May 22, 2024
1 parent e7275d3 commit ca027a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integrations/evaluations-proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ http {
listen 80;

location / {
location /intg/evaluations {
rewrite ^/intg/evaluations/(.*) /$1 break;
}

proxy_pass https://backend/intg/evaluations$request_uri;

proxy_set_header Host $host;
Expand Down
4 changes: 4 additions & 0 deletions integrations/submissions-proxy/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ http {
listen 80;

location / {
location /intg/submissions {
rewrite ^/intg/submissions/(.*) /$1 break;
}

proxy_pass https://backend/intg/submissions$request_uri;

proxy_set_header Host $host;
Expand Down

0 comments on commit ca027a2

Please sign in to comment.