From 6f8a27df642daca3730129db698bed2eb8dc72ba Mon Sep 17 00:00:00 2001 From: Tim Bendt Date: Mon, 1 Dec 2025 09:17:58 -0500 Subject: [PATCH] fix url in config --- bewcloud.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bewcloud.config.ts b/bewcloud.config.ts index b15d728..fec147b 100644 --- a/bewcloud.config.ts +++ b/bewcloud.config.ts @@ -3,7 +3,7 @@ import { Config, PartialDeep } from './lib/types.ts'; /** Check the Config type for all the possible options and instructions. */ const config: PartialDeep = { auth: { - baseUrl: 'https://bew.bendtstudio.com', // The base URL of the application you use to access the app, i.e. "http://localhost:8000" or "https://cloud.example.com" (note authentication won't work without https:// except for localhost; SSO redirect, if enabled, will be this + /oidc/callback, so "https://cloud.example.com/oidc/callback") + baseUrl: 'https://cloud.bendtstudio.com', // The base URL of the application you use to access the app, i.e. "http://localhost:8000" or "https://cloud.example.com" (note authentication won't work without https:// except for localhost; SSO redirect, if enabled, will be this + /oidc/callback, so "https://cloud.example.com/oidc/callback") allowSignups: true, // If true, anyone can sign up for an account. Note that it's always possible to sign up for the first user, and they will be an admin enableEmailVerification: false, // If true, email verification will be required for signups (using SMTP settings below) enableForeverSignup: true, // If true, all signups become active for 100 years