diff --git a/_snippets/integrations/builtin/core-nodes/schedule/timezone-settings.md b/_snippets/integrations/builtin/core-nodes/schedule/timezone-settings.md index 56ce9d10b..abbcb8c7a 100644 --- a/_snippets/integrations/builtin/core-nodes/schedule/timezone-settings.md +++ b/_snippets/integrations/builtin/core-nodes/schedule/timezone-settings.md @@ -2,5 +2,5 @@ The node relies on the timezone setting. n8n uses either: 1. The workflow timezone, if set. Refer to [Workflow settings](/workflows/settings/) for more information. -2. The n8n instance timezone, if the workflow timezone isn't set. The default is `America/New York` for self-hosted instances. n8n Cloud tries to detect the instance owner's timezone when they sign up, falling back to GMT as the default. Self-hosted users can change the instance setting using [Environment variables](/hosting/environment-variables/environment-variables/#timezone-and-localization). Cloud admins can change the instance timezone in the [Admin dashboard](/manage-cloud/set-cloud-timezone/). +2. The n8n instance timezone, if the workflow timezone isn't set. The default is `America/New York` for self-hosted instances. n8n Cloud tries to detect the instance owner's timezone when they sign up, falling back to GMT as the default. Self-hosted users can change the instance setting using [Environment variables](/hosting/configuration/environment-variables/#timezone-and-localization). Cloud admins can change the instance timezone in the [Admin dashboard](/manage-cloud/set-cloud-timezone/). /// diff --git a/docs/_redirects b/docs/_redirects index 1f5630d08..7dee71929 100644 --- a/docs/_redirects +++ b/docs/_redirects @@ -1,6 +1,6 @@ /contributing/ /help-community/contributing/ /manage-cloud/ /manage-cloud/overview/ -/hosting/configuration/* /hosting/configuration/:splat +/hosting/environment-variables/* /hosting/configuration/:splat /hosting/supported-databases-settings/ /hosting/configuration/supported-databases-settings/ /hosting/logging-monitoring/security-audit/ /hosting/logging-monitoring/security-audit/ /hosting/installation/ /hosting/ diff --git a/docs/advanced-ai/langchain/overview.md b/docs/advanced-ai/langchain/overview.md index 7151927f0..807a10941 100644 --- a/docs/advanced-ai/langchain/overview.md +++ b/docs/advanced-ai/langchain/overview.md @@ -8,5 +8,5 @@ description: Understand how n8n uses LangChain to provide advanced AI functional n8n provides a collection of nodes that implement LangChain's functionality. The LangChain nodes are configurable, meaning you can choose your preferred agent, LLM, memory, and so on. Alongside the LangChain nodes, you can connect any n8n node as normal: this means you can integrate your LangChain logic with other data sources and services. -* [Learning resources](/advanced-ai/langchain/learning-resources/): n8n's documentation for LangChain assumes you're familiar with AI and LangChain concepts. This page provides links to learning resources. +* [Learning resources](/advanced-ai/langchain/langchain-learning-resources/): n8n's documentation for LangChain assumes you're familiar with AI and LangChain concepts. This page provides links to learning resources. * [LangChain concepts and features in n8n](/advanced-ai/langchain/langchain-n8n/): how n8n represents LangChain concepts and features. diff --git a/docs/enterprise-key.md b/docs/enterprise-key.md index 37d8189ce..c67b2f17f 100644 --- a/docs/enterprise-key.md +++ b/docs/enterprise-key.md @@ -21,7 +21,7 @@ In your n8n instance: In your n8n configuration, set `N8N_LICENSE_ACTIVATION_KEY` to your license key. -Refer to [Environment variables](https://docs.n8n.io/hosting/configuration/) to learn more about configuring n8n. +Refer to [Environment variables](/hosting/configuration/configuration-methods/) to learn more about configuring n8n. ## Allowlist the license server IP addresses diff --git a/docs/hosting/configuration/user-management-self-hosted.md b/docs/hosting/configuration/user-management-self-hosted.md index fdaf21871..d20a7b648 100644 --- a/docs/hosting/configuration/user-management-self-hosted.md +++ b/docs/hosting/configuration/user-management-self-hosted.md @@ -44,7 +44,7 @@ Get the following information from your SMTP provider: * SMTP password * SMTP sender name -To set up SMTP with n8n, configure the SMTP environment variables for your n8n instance. For information on how to set environment variables, refer to [Configuration](/hosting/configuration/) +To set up SMTP with n8n, configure the SMTP environment variables for your n8n instance. For information on how to set environment variables, refer to [Configuration](/hosting/configuration/configuration-methods/) | Variable | Type | Description | Required? | | -------- | ---- | ----------- | --------- | diff --git a/docs/hosting/installation/docker.md b/docs/hosting/installation/docker.md index 5bf9979a0..d6e0c4753 100644 --- a/docs/hosting/installation/docker.md +++ b/docs/hosting/installation/docker.md @@ -51,7 +51,7 @@ Persisting the `/home/node/.n8n` directory even when using alternate databases i /// ### PostgresDB -To use n8n with Postgres, provide the corresponding [configuration](/hosting/configuration/): +To use n8n with Postgres, provide the corresponding: ```sh docker volume create n8n_data diff --git a/docs/privacy-security/privacy.md b/docs/privacy-security/privacy.md index 19ff8b77d..a2f2b43c1 100644 --- a/docs/privacy-security/privacy.md +++ b/docs/privacy-security/privacy.md @@ -117,7 +117,7 @@ To opt out of checking for new versions of n8n: export N8N_VERSION_NOTIFICATIONS_ENABLED=false ``` -See [configuration](/hosting/configuration/) for more info on how to set environment variables. +See [configuration](/hosting/configuration/configuration-methods/) for more info on how to set environment variables. ### Data collection in n8n Cloud diff --git a/docs/source-control-environments/understand/environments.md b/docs/source-control-environments/understand/environments.md index d5a01b507..ebed821de 100644 --- a/docs/source-control-environments/understand/environments.md +++ b/docs/source-control-environments/understand/environments.md @@ -15,7 +15,7 @@ n8n has built its environments feature on top of Git, a version control software In software development, the environment is all the infrastructure and tooling around the code, including the tools that run the software, and the specific configuration of those tools. For a more detailed introduction to environments in software development, refer to [Codecademy | Environments](https://www.codecademy.com/article/environments){:target=_blank .external-link}. -Low-code development in n8n is similar. n8n is where you build and run your workflows. Your instance may have particular configurations: on Cloud, n8n determines the configuration. On self-hosted instances, there are extensive [configuration options](/hosting/configuration/). You may also have made changes to the settings of your instance. This combination of n8n and your instance's specific configuration and settings is the environment your workflows run in. +Low-code development in n8n is similar. n8n is where you build and run your workflows. Your instance may have particular configurations: on Cloud, n8n determines the configuration. On self-hosted instances, there are extensive [configuration options](/hosting/configuration/configuration-methods/). You may also have made changes to the settings of your instance. This combination of n8n and your instance's specific configuration and settings is the environment your workflows run in. There are advantages to having more than one environment. A common pattern is to have different environments for development and production: