From d0213c183b827508d8a2f6e2a33719ef2e9f7461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Wed, 28 Feb 2024 16:29:09 +0100 Subject: [PATCH] Update API endpoint in download-pro-plugins.py --- src/common/core/pro/jobs/download-pro-plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/core/pro/jobs/download-pro-plugins.py b/src/common/core/pro/jobs/download-pro-plugins.py index a328b3f11..a62eea374 100644 --- a/src/common/core/pro/jobs/download-pro-plugins.py +++ b/src/common/core/pro/jobs/download-pro-plugins.py @@ -34,7 +34,7 @@ from Database import Database # type: ignore from logger import setup_logger # type: ignore from jobs import get_os_info, get_integration, get_version # type: ignore -API_ENDPOINT = "http://api:8080/pro" +API_ENDPOINT = "https://api.bunkerweb.io/pro" TMP_DIR = Path(sep, "var", "tmp", "bunkerweb", "pro", "plugins") PRO_PLUGINS_DIR = Path(sep, "etc", "bunkerweb", "pro", "plugins") logger = setup_logger("Jobs.download-pro-plugins", getenv("LOG_LEVEL", "INFO"))