NORY-56: fix default Keto configuration (#57)

This commit is contained in:
Markus Thielker 2025-01-27 22:38:07 +01:00 committed by GitHub
commit 1602dcaa0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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,
},