Update CONFIGURING.md

This commit is contained in:
Viren070
2025-01-19 20:41:31 +00:00
committed by GitHub
parent 64a7350f57
commit 043c5a2204
+1 -1
View File
@@ -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...}. <br/><br/>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...}. <br/><br/>In this case, using /default/manifest.json would use the configuration stored at the `default` key.<br/><br/>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 |