From fc4c8909596489ebbba9bc277dee3a470f5bb591 Mon Sep 17 00:00:00 2001 From: Markus Thielker Date: Mon, 27 Jan 2025 22:37:26 +0100 Subject: [PATCH] NORY-56: fix default Keto configuration --- dashboard/.env.example | 2 ++ dashboard/src/ory/sdk/server/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dashboard/.env.example b/dashboard/.env.example index fbb1831..07958f8 100644 --- a/dashboard/.env.example +++ b/dashboard/.env.example @@ -3,8 +3,10 @@ DATABASE_URL=postgresql://postgres:postgres@localhost:5432/kratos ORY_KRATOS_ADMIN_URL=http://localhost:4434 ORY_HYDRA_ADMIN_URL=http://localhost:4445 +ORY_KETO_ADMIN_URL=http://localhost:4467 NEXT_PUBLIC_ORY_KRATOS_URL=http://localhost:4433 +NEXT_PUBLIC_ORY_KETO_URL=http://localhost:4466 NEXT_PUBLIC_AUTHENTICATION_NODE_URL=http://localhost:3000 NEXT_PUBLIC_DASHBOARD_NODE_URL=http://localhost:4000 diff --git a/dashboard/src/ory/sdk/server/index.ts b/dashboard/src/ory/sdk/server/index.ts index 7649433..013631d 100644 --- a/dashboard/src/ory/sdk/server/index.ts +++ b/dashboard/src/ory/sdk/server/index.ts @@ -126,7 +126,7 @@ export async function getRelationshipApi() { const permissionApi = new PermissionApi(new Configuration( { - basePath: process.env.ORY_KETO_ADMIN_URL, + basePath: process.env.NEXT_PUBLIC_ORY_KETO_URL, baseOptions: { withCredentials: true, }, @@ -144,7 +144,7 @@ export async function getPermissionApi() { const ketoMetadataApi = new MetadataApi(new Configuration( { - basePath: process.env.ORY_KETO_ADMIN_URL, + basePath: process.env.NEXT_PUBLIC_ORY_KETO_URL, baseOptions: { withCredentials: true, },