diff --git a/apps/builder/src/pages/api/customDomains.ts b/apps/builder/src/pages/api/customDomains.ts index 28fa98d7c..058a12480 100644 --- a/apps/builder/src/pages/api/customDomains.ts +++ b/apps/builder/src/pages/api/customDomains.ts @@ -35,6 +35,7 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => { try { await createDomainOnVercel(data.name) } catch (err) { + console.log(err) if (err instanceof HTTPError && err.response.statusCode !== 409) return res.status(err.response.statusCode).send(err.response.body) } diff --git a/apps/docs/docs/self-hosting/configuration/builder.mdx b/apps/docs/docs/self-hosting/configuration/builder.mdx index 28e6d8750..607efae0f 100644 --- a/apps/docs/docs/self-hosting/configuration/builder.mdx +++ b/apps/docs/docs/self-hosting/configuration/builder.mdx @@ -17,7 +17,7 @@ import { SponsorButton } from '../../../src/js/SponsorButton.jsx' | NEXT_PUBLIC_VIEWER_URL | | The viewer base URL. Should be the publicly accessible URL (i.e. `https://bot.domain.com`) | | NEXTAUTH_URL_INTERNAL | | The internal builder base URL. You have to set it only when `NEXTAUTH_URL` can't be reached by your builder container / server. For a docker deployment, you should set it to `http://localhost:3000`. | | DEFAULT_WORKSPACE_PLAN | FREE | Default workspace plan on user creation or when a user creates a new workspace. Possible values are `FREE`, `STARTER`, `PRO`, `LIFETIME`, `UNLIMITED`. The default plan for admin user is `UNLIMITED` | -| DISABLE_SIGNUP | false | To disable new sign ups but still be able to sign in with existing users or admin email | +| DISABLE_SIGNUP | false | Disable new user sign ups. Invited users are still able to sign up. | ## Email (Auth, notifications)