|
| 1 | +--- |
| 2 | +icon: "paintbrush" |
| 3 | +title: "White Labeling" |
| 4 | +description: "Customize the branding of your self-hosted Rallly instance" |
| 5 | +--- |
| 6 | + |
| 7 | +<Note> |
| 8 | +These options are available from v4.6.0 and later and require an Enterprise license with a white-label add-on. |
| 9 | +</Note> |
| 10 | + |
| 11 | +White labeling allows you to customize the appearance of your Rallly instance to match your organization's branding. You can change the application name, primary colors, logos, and hide attribution text. |
| 12 | + |
| 13 | +## What You Can Customize |
| 14 | + |
| 15 | +- **Application Name** - Change the name displayed in page titles, navigation, and emails |
| 16 | +- **Primary Colors** - Set custom brand colors for both light and dark modes |
| 17 | +- **Logos** - Use your own logos for the application and emails |
| 18 | +- **Attribution** - Hide the "Powered by Rallly" text in polls and emails |
| 19 | + |
| 20 | +## Configuration |
| 21 | + |
| 22 | +All white labeling options are configured via environment variables. See the [Configuration Options](/self-hosting/configuration#branding) page for the full list of available settings. |
| 23 | + |
| 24 | +## Example |
| 25 | + |
| 26 | +Here's an example of a complete white labeling configuration in your `docker-compose.yml`: |
| 27 | + |
| 28 | +```yaml |
| 29 | +services: |
| 30 | + rallly: |
| 31 | + image: lukevella/rallly:4 |
| 32 | + environment: |
| 33 | + # ... other required environment variables ... |
| 34 | + |
| 35 | + # White labeling |
| 36 | + APP_NAME: "Acme Scheduler" |
| 37 | + PRIMARY_COLOR: "#0066cc" |
| 38 | + PRIMARY_COLOR_DARK: "#3399ff" |
| 39 | + LOGO_URL: "https://example.com/logo.svg" |
| 40 | + LOGO_URL_DARK: "https://example.com/logo-dark.svg" |
| 41 | + LOGO_ICON_URL: "https://example.com/icon.png" |
| 42 | + HIDE_ATTRIBUTION: "true" |
| 43 | +``` |
| 44 | +
|
| 45 | +## Viewing Current Settings |
| 46 | +
|
| 47 | +You can view the current branding configuration in the [Control Panel](/self-hosting/control-panel) under the **Branding** section. These settings are read-only in the UI and must be changed via environment variables. |
| 48 | +
|
| 49 | +## Requirements |
| 50 | +
|
| 51 | +- **Enterprise License with White Label Add-on**: White labeling features are only available with an active Enterprise license that includes the white label add-on. |
| 52 | +- Without the add-on, your instance will use the default Rallly branding regardless of environment variable settings. |
| 53 | +
|
| 54 | +To inquire about Enterprise licensing, please fill out our [Enterprise Requirements Survey](https://app.formbricks.com/s/cmebvnf2ohvjkt901eefxsonr). |
0 commit comments