mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 09:28:43 +07:00
fix 404s
This commit is contained in:
@@ -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/).
|
||||
///
|
||||
|
||||
@@ -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/
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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/)
|
||||
<!-- vale off -->
|
||||
| Variable | Type | Description | Required? |
|
||||
| -------- | ---- | ----------- | --------- |
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user