Configuration#
You can change n8n's settings using environment variables. For a full list of available configurations see Environment Variables.
Set environment variables by command line#
npm#
For npm, set your desired environment variables in terminal using the export
command as shown below:
1 |
|
Docker#
In Docker you can use the -e
flag from the command line:
1 2 3 4 5 6 7 |
|
Set environment variables using a file#
You can also configure n8n using a configuration file.
Only define the values that need to be different from the default in your configuration file. You can use multiple files. For example, you can have a file with generic base settings, and files with specific values for different environments.
npm#
Set the path to the JSON configuration file using the environment variable N8N_CONFIG_FILES
.
1 2 3 4 5 |
|
For example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
Docker#
In Docker, you can set your environment variables in the n8n: environment:
element of your docker-compose.yaml
file.
For example:
1 2 3 4 5 |
|
Keeping sensitive data in separate files#
You can append _FILE
to some individual environment variables to provide their configuration in a separate file, enabling you to avoid passing sensitive details using environment variables. n8n loads the data from the file with the given name, making it possible to load data from Docker- and Kubernetes-Secrets.
The following environment variables support file input:
CREDENTIALS_OVERWRITE_DATA_FILE
DB_TYPE_FILE
DB_MYSQLDB_DATABASE_FILE
DB_MYSQLDB_HOST_FILE
DB_MYSQLDB_PORT_FILE
DB_MYSQLDB_USER_FILE
DB_MYSQLDB_PASSWORD_FILE
DB_POSTGRESDB_DATABASE_FILE
DB_POSTGRESDB_HOST_FILE
DB_POSTGRESDB_PASSWORD_FILE
DB_POSTGRESDB_PORT_FILE
DB_POSTGRESDB_SSL_CA_FILE
DB_POSTGRESDB_SSL_CERT_FILE
DB_POSTGRESDB_SSL_KEY_FILE
DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED_FILE
DB_POSTGRESDB_USER_FILE
DB_POSTGRESDB_SCHEMA_FILE
N8N_BASIC_AUTH_PASSWORD_FILE
N8N_BASIC_AUTH_USER_FILE
N8N_BASIC_AUTH_HASH_FILE
N8N_JWT_AUTH_HEADER_FILE
N8N_JWKS_URI_FILE
N8N_JWT_AUTH_HEADER_VALUE_PREFIX_FILE
N8N_JWT_ISSUER_FILE
N8N_JWT_NAMESPACE_FILE
N8N_JWT_ALLOWED_TENANT_FILE
N8N_JWT_ALLOWED_TENANT_KEY_FILE
Examples#
Base URL#
Requires manual UI build
This variable requires a manual build of the n8n-editor-ui
package. You can't use it with the default n8n Docker image. The default is /
, meaning that it uses the root-domain.
Tells the front end how to reach the REST API of the back end:
1 |
|
Encryption key#
n8n creates a random encryption key automatically on the first launch and saves
it in the ~/.n8n
folder. n8n uses that key to encrypt the credentials before
they get saved to the database. It's possible to overwrite the key and
set it using an environment variable.
1 |
|
Execute all workflows in the same process#
All workflows run in their own separate process. This ensures that all CPU cores get used and that they don't block each other on CPU intensive tasks. It also makes sure that one execution crashing doesn't take down the whole application. The disadvantage is that it slows down the start-time considerably and uses much more memory. If your workflows aren't CPU intensive, and they have to start very fast, it's possible to run them all directly in the main-process with this setting.
1 |
|
Execution timeout#
A workflow times out and gets canceled after this time (in seconds). If the workflow runs in the main process, a soft timeout happens (takes effect after the current node finishes). If a workflow runs in its own process, n8n attempts a soft timeout first, then kills the process after waiting for an additional fifth of the given timeout duration.
EXECUTIONS_TIMEOUT
default is -1
. For example, if you want to set the timeout to one hour:
1 |
|
You can also set maximum execution time (in seconds) for each workflow individually. For example, if you want to set maximum execution time to two hours:
1 |
|
Custom nodes location#
Every user can add custom nodes that get loaded by n8n on startup. The default
location is in the subfolder .n8n/custom
of the user who started n8n.
You can define additional folders with an environment variable:
1 |
|
Use built-in and external modules in the Code node#
For security reasons, the Code node restricts importing modules. It's possible to lift that restriction for built-in and external modules by setting the following environment variables:
NODE_FUNCTION_ALLOW_BUILTIN
: For built-in modulesNODE_FUNCTION_ALLOW_EXTERNAL
: For external modules sourced from n8n/node_modules directory. External module support is disabled when an environment variable isn't set.
1 2 3 4 5 6 7 8 9 10 11 |
|
Timezone#
The default timezone is "America/New_York". For instance, the Cron node uses it to know at what time the workflow should start. To set a different default timezone, set GENERIC_TIMEZONE
to the appropriate value. For example, if you want to set the timezone to Berlin (Germany):
1 |
|
You can find the name of your timezone here.
User folder#
n8n saves user-specific data like the encryption key, SQLite database file, and
the ID of the tunnel (if used) in the subfolder .n8n
of the user who started n8n. It's possible to overwrite the user-folder using an environment variable.
1 |
|
Webhook URL#
n8n creates the webhook URL by combining N8N_PROTOCOL
, N8N_HOST
and N8N_PORT
. If n8n runs behind a reverse proxy, that won't work. That's because n8n runs internally
on port 5678 but is exposed to the web using the reverse proxy on port 443. In
that case, it's important to set the webhook URL manually so that n8n can display it correctly in the Editor UI and register the correct webhook URLs with external services.
1 |
|
Prometheus#
To collect and expose metrics, n8n uses the prom-client library.
The /metrics
endpoint is disabled by default, but it's possible to enable it using the N8N_METRICS
environment variable.
1 |
|
It's also possible to overwrite the prefix of the metric names by setting the N8N_METRICS_PREFIX
environment variable.
1 |
|
Metrics and webhooks
At the moment, n8n doesn't support metrics for webhooks.