|
| 1 | +# Advanced Configuration |
| 2 | + |
| 3 | +## Overview |
| 4 | + |
| 5 | +The Advanced Configuration section in the CloudLinux Monetize module dashboard allows administrators to configure product-level settings for Imunify Patch. |
| 6 | + |
| 7 | +## Accessing Advanced Configuration |
| 8 | + |
| 9 | +1. Navigate to **Addons > CloudLinux Monetize** in the WHMCS admin area |
| 10 | +2. Locate the **Imunify Patch** product |
| 11 | +3. Click the **Advanced Configuration** toggle below the product to expand the settings |
| 12 | + |
| 13 | +## Settings |
| 14 | + |
| 15 | +### Enable Notifications |
| 16 | + |
| 17 | +Controls whether Imunify sends promotional notifications to customers in the hosting panel. When enabled, customers with patchable vulnerabilities receive notifications with a direct link to subscribe and enable protection. |
| 18 | + |
| 19 | +### Webhooks |
| 20 | + |
| 21 | +Webhooks allow you to receive real-time HTTP POST notifications about Imunify Patch security events on your own endpoints. |
| 22 | + |
| 23 | +| Field | Description | |
| 24 | +|-------|-------------| |
| 25 | +| **URL** | The endpoint that will receive webhook notifications (e.g., `https://ops.example.com/imunify/webhook`) | |
| 26 | +| **Secret** | A shared secret used to sign requests. If set, each request includes an `X-Imunify-Signature` header for verification | |
| 27 | +| **Events** | A comma-separated list of event types to subscribe to. If omitted, all supported event types are delivered | |
| 28 | + |
| 29 | +**Supported events:** |
| 30 | + |
| 31 | +| Event | Description | |
| 32 | +|-------|-------------| |
| 33 | +| `vulnerability_found` | Triggered when a new vulnerability is detected on a customer's website | |
| 34 | +| `vulnerabilities_patched_digest` | Triggered when a digest of patched vulnerabilities is available | |
| 35 | + |
| 36 | +To manage webhooks, click **Add Webhook** to create a new entry, fill in the fields, and click **Save Configuration**. Use the trash icon to remove a webhook. |
| 37 | + |
| 38 | +### Optional Parameters |
| 39 | + |
| 40 | +A JSON field for specifying additional configuration parameters. The `optional_parameters` object is designed to be extensible. |
| 41 | + |
| 42 | +**Limiting rollout to specific servers:** |
| 43 | + |
| 44 | +You can limit the initial rollout of Imunify Patch to a subset of servers by specifying their IP addresses: |
| 45 | + |
| 46 | +``` |
| 47 | +{ |
| 48 | + "enabled_for_ids": ["192.0.2.1", "192.0.2.2"] |
| 49 | +} |
| 50 | +``` |
| 51 | + |
| 52 | +- If `enabled_for_ids` is present, Imunify Patch UI, detection, and reporting are only enabled for the listed server IPs. |
| 53 | +- If `enabled_for_ids` is omitted, the product applies to the entire server fleet. |
| 54 | + |
| 55 | +## Saving Configuration |
| 56 | + |
| 57 | +Click **Save Configuration** at the bottom of the settings. A success message confirms the settings have been saved and synchronized with the CloudLinux API. |
| 58 | + |
0 commit comments