From ca2efc5c68bfe36225a652f705dc18aa9fa23f90 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Thu, 5 Feb 2026 02:18:24 -0600 Subject: [PATCH] fix(enterprise): update LICENSE_KEY_URL for production environment - Changed the LICENSE_KEY_URL from "https://api-license-key.dokploy.com" to "https://licenses.dokploy.com" to reflect the correct production endpoint. --- packages/server/src/utils/crons/enterprise.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/src/utils/crons/enterprise.ts b/packages/server/src/utils/crons/enterprise.ts index 059a8b775..9dfbae9a7 100644 --- a/packages/server/src/utils/crons/enterprise.ts +++ b/packages/server/src/utils/crons/enterprise.ts @@ -7,7 +7,7 @@ import { user as userSchema } from "../../db/schema/user"; export const LICENSE_KEY_URL = process.env.NODE_ENV === "development" ? "http://localhost:4002" - : "https://api-license-key.dokploy.com"; + : "https://licenses.dokploy.com"; export const initEnterpriseBackupCronJobs = async () => { scheduleJob("enterprise-check", "0 0 */3 * *", async () => {