diff --git a/config/00-realm-config.yaml b/config/00-realm-config.yaml index faa8e3b..e21407b 100644 --- a/config/00-realm-config.yaml +++ b/config/00-realm-config.yaml @@ -13,6 +13,12 @@ defaultLocale: ru supportedLocales: - ru +ssoSessionIdleTimeout: 1800 # 30 minutes +ssoSessionMaxLifespan: 28800 # 8 hours + +ssoSessionIdleTimeoutRememberMe: 604800 # 7 days +ssoSessionMaxLifespanRememberMe: 31536000 # 1 year + smtpServer: # Sender Details from: $(EMAIL_ADRESS) diff --git a/config/01-clients-config.yaml b/config/01-clients-config.yaml index 1b3cb11..335a12d 100644 --- a/config/01-clients-config.yaml +++ b/config/01-clients-config.yaml @@ -14,6 +14,20 @@ clients: directAccessGrantsEnabled: true attributes: post.logout.redirect.uris: $(FRONTEND_HOME_URI) + + - clientId: $(LOCAL_QUANTUM_SIM_CLIENT_ID) + name: $(LOCAL_QUANTUM_SIM_NAME) + rootUrl: $(LOCAL_QUANTUM_SIM_URL) + enabled: true + publicClient: true + redirectUris: + - $(LOCAL_QUANTUM_SIM_REDIRECT_PATH) + webOrigins: + - $(LOCAL_QUANTUM_SIM_URL) + protocol: openid-connect + standardFlowEnabled: true + directAccessGrantsEnabled: true + - clientId: $(QUANTUM_BACKEND_CLIENT_ID) enabled: true name: $(QUANTUM_BACKEND_CLIENT_NAME)