feat: Add N8N_CONFIG_FILES to v2 breaking changes doc (#4036)

This commit is contained in:
Tomi Turtiainen
2025-12-22 16:59:56 +02:00
committed by GitHub
parent 8f37d33fbc
commit 29d3c5e660
2 changed files with 7 additions and 1 deletions

View File

@@ -165,6 +165,13 @@ The `QUEUE_WORKER_MAX_STALLED_COUNT` environment variable and the Bull retry mec
**Migration path:** Delete this environment variable from your configuration. After upgrading, n8n will no longer automatically retry stalled jobs. If you need to handle stalled jobs, consider implementing your own retry logic or monitoring.
### Remove N8N_CONFIG_FILES
The `N8N_CONFIG_FILES` environment variable has been removed.
**Migration path:** Delete this environment variable from your configuration. Move configuration into environment variables, an `.env` file or [`_FILE`](/hosting/configuration/configuration-methods.md#keeping-sensitive-data-in-separate-files) based configuration.
## CLI & Workflow
### Replace CLI command update:workflow

View File

@@ -30,7 +30,6 @@ To learn more about proxy environment variables, check the [environment variable
| `ALL_PROXY` | String | - | A URL to proxy both unencrypted and encrypted HTTP requests through. When set, n8n uses this value when more specific variables (`HTTP_PROXY` or `HTTPS_PROXY`) aren't present. |
| `NO_PROXY` | String | - | A comma-separated list of hostnames or URLs that should bypass the proxy. When using `HTTP_PROXY`, `HTTPS_PROXY`, or `ALL_PROXY`, n8n will connect directly to the URLs or hostnames defined here instead of using the proxy. |
| `N8N_EDITOR_BASE_URL` | String | - | Public URL where users can access the editor. Also used for emails sent from n8n and the redirect URL for SAML based authentication. |
| `N8N_CONFIG_FILES` (deprecated) | String | - | Use to provide the path to a JSON configuration file. This option is deprecated and will be removed in a future version. Use `.env` files or `*_FILE` environment variables instead. |
| `N8N_DISABLE_UI` | Boolean | `false` | Set to `true` to disable the UI. |
| `N8N_PREVIEW_MODE` | Boolean | `false` | Set to `true` to run in preview mode. |
| `N8N_TEMPLATES_ENABLED` | Boolean | `false` | Enables [workflow templates](/glossary.md#template-n8n) (true) or disable (false). |