diff --git a/rest/controllers/coolify_controller.go b/rest/controllers/coolify_controller.go index e3e1a65..1cf4dfe 100644 --- a/rest/controllers/coolify_controller.go +++ b/rest/controllers/coolify_controller.go @@ -120,7 +120,7 @@ func CoolifyTestConnection(c *fiber.Ctx) error { } base := strings.TrimRight(cfg.BaseURL, "/") client := &http.Client{Timeout: 10 * time.Second} - resp, err := client.Get(base + "/api/v1/healthcheck") + resp, err := client.Get(base + "/api/health") if err != nil { return c.Status(fiber.StatusBadGateway).JSON(fiber.Map{"error": err.Error()}) }