From 67e2d2f00f0d86d979b21ef904ffe2845b67e4ce Mon Sep 17 00:00:00 2001 From: RomanDavydchuk Date: Wed, 19 Nov 2025 17:27:45 +0200 Subject: [PATCH] feat: Add docs for N8N_GIT_NODE_ENABLE_HOOKS environment variable (#3892) Co-authored-by: Kartik Balasubramanian <22399046+HumanistSerif@users.noreply.github.com> --- docs/hosting/configuration/environment-variables/security.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/hosting/configuration/environment-variables/security.md b/docs/hosting/configuration/environment-variables/security.md index dcca5ced1..c5a624254 100644 --- a/docs/hosting/configuration/environment-variables/security.md +++ b/docs/hosting/configuration/environment-variables/security.md @@ -23,3 +23,4 @@ hide: | `N8N_SECURE_COOKIE` | Boolean | `true` | Ensures that cookies are only sent over HTTPS, enhancing security.| | `N8N_SAMESITE_COOKIE` | Enum string: `strict`, `lax`, `none` | `lax` | Controls cross-site cookie behavior ([learn more](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite)): | | `N8N_GIT_NODE_DISABLE_BARE_REPOS` | Boolean | `false` | Set to `true` to prevent the [Git node](/integrations/builtin/core-nodes/n8n-nodes-base.git.md) from working with bare repositories, enhancing security. | +| `N8N_GIT_NODE_ENABLE_HOOKS` | Boolean | `false` | Set to `true` to allow the [Git node](/integrations/builtin/core-nodes/n8n-nodes-base.git.md) to execute Git hooks. |