Skip to content

Commit

Permalink
Merge pull request #114 from langchain-ai/infra/fix-subdomain-rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
langchain-infra authored Jul 1, 2024
2 parents 6bab267 + 7150670 commit 8414ce5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/langsmith/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ maintainers:
email: [email protected]
description: Helm chart to deploy the langsmith application and all services it depends on.
type: application
version: 0.6.8
version: 0.6.9
appVersion: "0.6.21"
3 changes: 2 additions & 1 deletion charts/langsmith/templates/frontend/config-map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ data:
# Hub Backend Routes
location ~ /{{ .Values.ingress.subdomain }}/api-hub {
rewrite /{{ .Values.ingress.subdomain }}/api-hub/(.*) /$1 break;
rewrite /{{ .Values.ingress.subdomain }}/api-hub/(.*) /api/$1 break;
proxy_set_header Connection '';
proxy_http_version 1.1;
proxy_buffering off;
Expand All @@ -68,6 +68,7 @@ data:
# Backend Routes
location ~ /{{ .Values.ingress.subdomain }}/api {
rewrite /{{ .Values.ingress.subdomain }}/api/(.*) /api/$1 break;
proxy_set_header Connection '';
proxy_http_version 1.1;
proxy_buffering off;
Expand Down

0 comments on commit 8414ce5

Please sign in to comment.