diff --git a/CONFIGURING.md b/CONFIGURING.md index 4d000536..aa90e9c8 100644 --- a/CONFIGURING.md +++ b/CONFIGURING.md @@ -5,7 +5,7 @@ | `PORT` | `3000` | The port on which the server runs. | | `BRANDING` | `undefined` | Custom branding for the addon, displayed at the top of the configuration page. **This is a BUILD TIME environment variable.** | | `SECRET_KEY` | Empty string (`''`) | The secret key used for encryption or sensitive operations. `openssl rand -hex 16` or `[System.Guid]::NewGuid().ToString("N").Substring(0, 32)` can be used to generate a new secret key for Linux/MacoS and Windows respectively. | -| `CUSTOM_CONFIGS` | Empty string (`''`) | Custom configurations in JSON format, using the alias as the key, and the encoded/encrypted string as the value. e.g. {"default": "eyJyZXNvbHV0....", "rd": "E-affedc...}.

In this case, using /default/manifest.json would use the configuration stored at the `default` key | +| `CUSTOM_CONFIGS` | Empty string (`''`) | Custom configurations in JSON format, using the alias as the key, and the encoded/encrypted string as the value. e.g. {"default": "eyJyZXNvbHV0....", "rd": "E-affedc...}.

In this case, using /default/manifest.json would use the configuration stored at the `default` key.

To easily generate the value for this environment variable, head to /custom-config-generator on your instance to find a tool that outputs the necessary value based on your configurations. | | `DISABLE_CUSTOM_CONFIG_GENERATOR_ROUTE` | `false` | Whether to disable the /custom-config-generator route | | `COMET_URL` | `https://comet.elfhosted.com/` | The URL for the Comet addon. You can replace this with your self-hosted instance of Comet. | | `MEDIAFUSION_URL` | `https://mediafusion.elfhosted.com/` | The URL for the MediaFusion addon |