What is that env variable name? Below is my .env file (redacted)
# The top level domain to serve from
DOMAIN_NAME=example.com
# The subdomain to serve from
SUBDOMAIN=n8n
# DOMAIN_NAME and SUBDOMAIN combined decide where n8n will be reachable from
# above example would result in: https://n8n.example.com
# Optional timezone to set which gets used by Cron-Node by default
# If not set New York time will be used
GENERIC_TIMEZONE=Europe/Berlin
# The email address to use for the SSL certificate creation
#[email protected]
POSTGRES_USER=user
POSTGRES_PASSWORD=password
POSTGRES_DB=n8n
POSTGRES_NON_ROOT_USER=user-root
POSTGRES_NON_ROOT_PASSWORD=anotherpassword
I found EXECUTIONS_DATA_MAX_AGE and set it to 336, which is supposed to result in 14 days. Nevertheless, I still see no more than two days of execution history.
Any ideas how to extend the period?
Thanks!