add routes for saml sso to self-hosted proxy configs (#44440)

This commit is contained in:
Andrey A.
2026-04-01 18:18:50 +02:00
committed by GitHub
parent 26880c4b9b
commit b34d8e6609
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
{$PROXY_DOMAIN} {
@supabase_api path /auth/v1/* /rest/v1/* /graphql/v1 /realtime/v1/* /storage/v1/* /functions/v1/* /mcp
@supabase_api path /auth/v1/* /rest/v1/* /graphql/v1 /realtime/v1/* /storage/v1/* /functions/v1/* /mcp /sso/*
handle @supabase_api {
reverse_proxy kong:8000

View File

@@ -88,4 +88,8 @@ server {
location /mcp {
proxy_pass http://kong_upstream;
}
location /sso {
proxy_pass http://kong_upstream;
}
}