From 17da1d5b3ca4e32f6e380dc2997f914de9874260 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 10 Feb 2026 00:31:40 -0600 Subject: [PATCH] fix: Update LICENSE_KEY_URL for production environment - Changed the production license key URL from "https://licenses.dokploy.com" to "https://licenses-api.dokploy.com" for improved API access. --- 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 9dfbae9a7..7b07aaefb 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://licenses.dokploy.com"; + : "https://licenses-api.dokploy.com"; export const initEnterpriseBackupCronJobs = async () => { scheduleJob("enterprise-check", "0 0 */3 * *", async () => {