@n8n-as-code/skills 2.0.0-next.118 → 2.0.0-next.119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/n8n-credentials-ontology.json +1 -1
- package/dist/assets/n8n-docs-complete.json +242 -336
- package/dist/assets/n8n-knowledge-index.json +200 -298
- package/dist/assets/n8n-nodes-index.json +5 -5
- package/dist/assets/n8n-nodes-technical.json +5 -5
- package/dist/assets/workflows-index.json +1 -1
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-05-05T22:
|
|
2
|
+
"generatedAt": "2026-05-05T22:09:14.387Z",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"sourceUrl": "https://docs.n8n.io/llms.txt",
|
|
5
|
-
"totalPages":
|
|
5
|
+
"totalPages": 1272,
|
|
6
6
|
"statistics": {
|
|
7
7
|
"byCategory": {
|
|
8
8
|
"other": 514,
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"code": 20,
|
|
13
13
|
"data": 38,
|
|
14
14
|
"flow-logic": 8,
|
|
15
|
-
"hosting":
|
|
15
|
+
"hosting": 85,
|
|
16
16
|
"integrations": 308,
|
|
17
17
|
"cluster-nodes": 104,
|
|
18
18
|
"trigger-nodes": 107,
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"withNodeNames": 471,
|
|
23
23
|
"withUseCases": 39,
|
|
24
|
-
"withCodeExamples":
|
|
24
|
+
"withCodeExamples": 180
|
|
25
25
|
},
|
|
26
26
|
"categories": {
|
|
27
27
|
"other": {
|
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
},
|
|
710
710
|
"hosting": {
|
|
711
711
|
"description": "Self-hosting, deployment, and infrastructure",
|
|
712
|
-
"totalPages":
|
|
712
|
+
"totalPages": 85,
|
|
713
713
|
"pages": [
|
|
714
714
|
"page-0145",
|
|
715
715
|
"page-0146",
|
|
@@ -719,7 +719,6 @@
|
|
|
719
719
|
"page-0150",
|
|
720
720
|
"page-0151",
|
|
721
721
|
"page-0152",
|
|
722
|
-
"page-0153",
|
|
723
722
|
"page-0154",
|
|
724
723
|
"page-0155",
|
|
725
724
|
"page-0156",
|
|
@@ -13535,13 +13534,18 @@
|
|
|
13535
13534
|
"nodeName": null,
|
|
13536
13535
|
"nodeType": null,
|
|
13537
13536
|
"content": {
|
|
13538
|
-
"markdown": "# External hooks\n\nExternal hooks let you run custom code whenever n8n performs a specific operation. Use them to log data, change data, or forbid an action by throwing an error.\n\nThere are two types:\n\n- **Backend hooks**: run server-side, registered using the `EXTERNAL_HOOK_FILES` environment variable.\n- **Frontend hooks**: run in the browser, loaded with a script tag.\n\nFor the environment variables used to register hooks, refer to [External hooks environment variables](../environment-variables/external-hooks/).\n\n## Backend hooks\n\n### Available hooks\n\n| Hook | Arguments | Description |\n| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |\n| `credentials.create` | `[credentialData: ICredentialsDb]` | Called before new credentials get created. Use to restrict the number of credentials. |\n| `credentials.delete` | `[id: credentialId]` | Called before credentials get deleted. |\n| `credentials.update` | `[credentialData: ICredentialsDb]` | Called before n8n saves existing credentials. |\n| `frontend.settings` | `[frontendSettings: IN8nUISettings]` | Gets called on n8n startup. Allows you to, for example, overwrite frontend data like the displayed OAuth URL. |\n| `n8n.ready` | `[app: App]` | Called once n8n is ready. Use to, for example, register custom API endpoints. |\n| `n8n.stop` | | Called when an n8n process gets stopped. Allows you to save some process data. |\n| `oauth1.authenticate` | `[oAuthOptions: clientOAuth1.Options, oauthRequestData: {oauth_callback: string}]` | Called before an OAuth1 authentication. Use to overwrite an OAuth callback URL. |\n| `oauth2.callback` | `[oAuth2Parameters: {clientId: string, clientSecret: string \\| undefined, accessTokenUri: string, authorizationUri: string, redirectUri: string, scopes: string[]}]` | Called in an OAuth2 callback. Use to overwrite an OAuth callback URL. |\n| `workflow.activate` | `[workflowData: IWorkflowDb]` | Called before a workflow gets activated. Use to restrict the number of active workflows. |\n| `workflow.afterCreate` | `[workflowId: string]` | Called after a workflow gets created. |\n| `workflow.afterDelete` | `[workflowId: string]` | Called after a workflow gets deleted. |\n| `workflow.afterUpdate` | `[workflowData: IWorkflowBase]` | Called after an existing workflow gets saved. |\n| `workflow.create` | `[workflowData: IWorkflowBase]` | Called before a workflow gets created. Use to restrict the number of saved workflows. |\n| `workflow.delete` | `[workflowId: string]` | Called before a workflow gets deleted. |\n| `workflow.postExecute` | `[run: IRun, workflowData: IWorkflowBase]` | Called after a workflow gets executed. |\n| `workflow.preExecute` | `[workflow: Workflow: mode: WorkflowExecuteMode]` | Called before a workflow gets executed. Allows you to count or limit the number of workflow executions. |\n| `workflow.update` | `[workflowData: IWorkflowBase]` | Called before an existing workflow gets saved. |\n| `workflow.afterArchive` | `[workflowId: string]` | Called after you archive a workflow. |\n| `workflow.afterUnarchive` | `[workflowId: string]` | Called after you restore a workflow from the archive. |\n\n### Registering hooks\n\nSet hooks by registering a hook file that contains the hook functions. To register a hook, set the environment variable `EXTERNAL_HOOK_FILES`.\n\nYou can set the variable to a single file:\n\n`EXTERNAL_HOOK_FILES=/data/hook.js`\n\nOr to contain multiple files separated by a colon:\n\n`EXTERNAL_HOOK_FILES=/data/hook1.js:/data/hook2.js`\n\n### Hook files\n\nHook files are regular JavaScript files that have the following format:\n\n```\nmodule.exports = {\n \"frontend\": {\n \"settings\": [\n async function (settings) {\n settings.oauthCallbackUrls.oauth1 = 'https://n8n.example.com/oauth1/callback';\n settings.oauthCallbackUrls.oauth2 = 'https://n8n.example.com/oauth2/callback';\n }\n ]\n },\n \"workflow\": {\n \"activate\": [\n async function (workflowData) {\n const activeWorkflows = await this.dbCollections.Workflow.count({ active: true });\n\n if (activeWorkflows > 1) {\n throw new Error(\n 'Active workflow limit reached.'\n );\n }\n }\n ]\n }\n}\n```\n\n### Hook functions\n\nA hook or a hook file can contain multiple hook functions, with all functions executed one after another.\n\nIf the parameters of the hook function are objects, it's possible to change the data of that parameter to change the behavior of n8n.\n\nYou can also access the database in any hook function using `this.dbCollections` (refer to the code sample in [Hook files](#hook-files) above).\n\n## Frontend external hooks\n\nLike backend external hooks, it's possible to define external hooks in the frontend code that get executed by n8n whenever a user performs a specific operation. You can use them, for example, to log data and change data.\n\n### Available hooks\n\n| Hook | Description |\n| ------------------------------------------ | --------------------------------------------------------------------------- |\n| `credentialsEdit.credentialTypeChanged` | Called when an existing credential's type changes. |\n| `credentials.create` | Called when someone creates a new credential. |\n| `credentialsList.dialogVisibleChanged` | |\n| `dataDisplay.nodeTypeChanged` | |\n| `dataDisplay.onDocumentationUrlClick` | Called when someone selects the help documentation link. |\n| `execution.open` | Called when an existing execution opens. |\n| `executionsList.openDialog` | Called when someone selects an execution from existing Workflow Executions. |\n| `expressionEdit.itemSelected` | |\n| `expressionEdit.dialogVisibleChanged` | |\n| `nodeCreateList.filteredNodeTypesComputed` | |\n| `nodeCreateList.nodeFilterChanged` | Called when someone makes any changes to the node panel filter. |\n| `nodeCreateList.selectedTypeChanged` | |\n| `nodeCreateList.mounted` | |\n| `nodeCreateList.destroyed` | |\n| `nodeSettings.credentialSelected` | |\n| `nodeSettings.valueChanged` | |\n| `nodeView.createNodeActiveChanged` | |\n| `nodeView.addNodeButton` | |\n| `nodeView.mount` | |\n| `pushConnection.executionFinished` | |\n| `showMessage.showError` | |\n| `runData.displayModeChanged` | |\n| `workflow.activeChange` | |\n| `workflow.activeChangeCurrent` | |\n| `workflow.afterUpdate` | Called when someone updates an existing workflow. |\n| `workflow.open` | |\n| `workflowRun.runError` | |\n| `workflowRun.runWorkflow` | Called when a workflow executes. |\n| `workflowSettings.dialogVisibleChanged` | |\n| `workflowSettings.saveSettings` | Called when someone saves the settings of a workflow. |\n\n### Registering frontend hooks\n\nYou can set hooks by loading the hooks script on the page. One way to do this is by creating a hooks file in the project and adding a script tag in your `editor-ui/public/index.html` file:\n\n```\n<script src=\"frontend-hooks.js\"></script>\n```\n\n### Frontend hook files\n\nFrontend external hook files are regular JavaScript files which have the following format:\n\n```\nwindow.n8nExternalHooks = {\n nodeView: {\n mount: [\n function (store, meta) {\n // do something\n },\n ],\n createNodeActiveChanged: [\n function (store, meta) {\n // do something\n },\n function (store, meta) {\n // do something else\n },\n ],\n addNodeButton: [\n function (store, meta) {\n // do something\n },\n ],\n },\n};\n```\n\n### Frontend hook functions\n\nYou can define multiple hook functions per hook. n8n calls each hook function with the following arguments:\n\n- `store`: The Vuex store object. You can use this to change or get data from the store.\n- `metadata`: The object that contains any data provided by the hook. To see what's passed, search for the hook in the `editor-ui` package.\n",
|
|
13539
|
-
"excerpt": "#
|
|
13537
|
+
"markdown": "# Supported databases\n\nBy default, n8n uses SQLite to save credentials, past executions, and workflows. n8n also supports PostgresDB (only [actively maintained versions](https://www.postgresql.org/support/versioning/)).\n\n## Database type by n8n installation\n\nThe database type used varies depending on your n8n installation:\n\n### Self-hosted n8n\n\nBy default, self-hosted installations use **SQLite**. You can optionally configure PostgreSQL by setting the appropriate environment variables (see [PostgresDB configuration](#postgresdb)).\n\n### n8n Cloud\n\nn8n Cloud installations use different databases depending on your plan tier:\n\n- **SQLite**: Trial, Starter, and Pro plans, as well as legacy Enterprise plans\n- **PostgreSQL**: Enterprise Scaling plans only\n\n## Shared settings\n\nThe following environment variables get used by all databases:\n\n- `DB_TABLE_PREFIX` (default: -) - Prefix for table names\n\n## PostgresDB\n\nTo use PostgresDB as the database, you can provide the following environment variables:\n\n- `DB_TYPE=postgresdb`\n- `DB_POSTGRESDB_DATABASE` (default: 'n8n')\n- `DB_POSTGRESDB_HOST` (default: 'localhost')\n- `DB_POSTGRESDB_PORT` (default: 5432)\n- `DB_POSTGRESDB_USER` (default: 'postgres')\n- `DB_POSTGRESDB_PASSWORD` (default: empty)\n- `DB_POSTGRESDB_SCHEMA` (default: 'public')\n- `DB_POSTGRESDB_SSL_CA` (default: undefined): Path to the server's CA certificate used to validate the connection (opportunistic encryption isn't supported)\n- `DB_POSTGRESDB_SSL_CERT` (default: undefined): Path to the client's TLS certificate\n- `DB_POSTGRESDB_SSL_KEY` (default: undefined): Path to the client's private key corresponding to the certificate\n- `DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED` (default: true): If TLS connections that fail validation should be rejected\n\n```\nexport DB_TYPE=postgresdb\nexport DB_POSTGRESDB_DATABASE=n8n\nexport DB_POSTGRESDB_HOST=postgresdb\nexport DB_POSTGRESDB_PORT=5432\nexport DB_POSTGRESDB_USER=n8n\nexport DB_POSTGRESDB_PASSWORD=n8n\nexport DB_POSTGRESDB_SCHEMA=n8n\n\n# optional:\nexport DB_POSTGRESDB_SSL_CA_FILE=$(pwd)/ca.crt\nexport DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED=false\n\nn8n start\n```\n\n### Required permissions\n\nn8n needs to create and modify the schemas of the tables it uses.\n\nRecommended permissions:\n\n```\nCREATE DATABASE n8n-db;\nCREATE USER n8n-user WITH PASSWORD 'random-password';\nGRANT ALL PRIVILEGES ON DATABASE n8n-db TO n8n-user;\n```\n\n### TLS\n\nYou can choose between these configurations:\n\n- Not declaring (default): Connect with `SSL=off`\n- Declaring only the CA and unauthorized flag: Connect with `SSL=on` and verify the server's signature\n- Declaring `_{CERT,KEY}` and the above: Use the certificate and key for client TLS authentication\n\n## SQLite\n\nThis is the default database that gets used if nothing is defined.\n\nThe database file is located at: `~/.n8n/database.sqlite`\n | Called when an n8n process gets stopped. Allows you to save some process data. |\n| `oauth1.authenticate` | `[oAuthOptions: clientOAuth1.Options, oauthRequestData: {oauth_callback: string}]` | Called before an OAuth1 authentication. Use to overwrite an OAuth callback URL. |\n| `oauth2.callback` | `[oAuth2Parameters: {clientId: string, clientSecret: string \\| undefined, accessTokenUri: string, authorizationUri: string, redirectUri: string, scopes: string[]}]` | Called in an OAuth2 callback. Use to overwrite an OAuth callback URL. |\n| `workflow.activate` | `[workflowData: IWorkflowDb]` | Called before a workflow gets activated. Use to restrict the number of active workflows. |\n| `workflow.afterCreate` | `[workflowId: string]` | Called after a workflow gets created. |\n| `workflow.afterDelete` | `[workflowId: string]` | Called after a workflow gets deleted. |\n| `workflow.afterUpdate` | `[workflowData: IWorkflowBase]` | Called after an existing workflow gets saved. |\n| `workflow.create` | `[workflowData: IWorkflowBase]` | Called before a workflow gets created. Use to restrict the number of saved workflows. |\n| `workflow.delete` | `[workflowId: string]` | Called before a workflow gets deleted. |\n| `workflow.postExecute` | `[run: IRun, workflowData: IWorkflowBase]` | Called after a workflow gets executed. |\n| `workflow.preExecute` | `[workflow: Workflow: mode: WorkflowExecuteMode]` | Called before a workflow gets executed. Allows you to count or limit the number of workflow executions. |\n| `workflow.update` | `[workflowData: IWorkflowBase]` | Called before an existing workflow gets saved. |\n| `workflow.afterArchive` | `[workflowId: string]` | Called after you archive a workflow. |\n| `workflow.afterUnarchive` | `[workflowId: string]` | Called after you restore a workflow from the archive. |\n\n### Registering hooks\n\nSet hooks by registering a hook file that contains the hook functions. To register a hook, set the environment variable `EXTERNAL_HOOK_FILES`.\n\nYou can set the variable to a single file:\n\n`EXTERNAL_HOOK_FILES=/data/hook.js`\n\nOr to contain multiple files separated by a colon:\n\n`EXTERNAL_HOOK_FILES=/data/hook1.js:/data/hook2.js`\n\n### Hook files\n\nHook files are regular JavaScript files that have the following format:\n\n```\nmodule.exports = {\n \"frontend\": {\n \"settings\": [\n async function (settings) {\n settings.oauthCallbackUrls.oauth1 = 'https://n8n.example.com/oauth1/callback';\n settings.oauthCallbackUrls.oauth2 = 'https://n8n.example.com/oauth2/callback';\n }\n ]\n },\n \"workflow\": {\n \"activate\": [\n async function (workflowData) {\n const activeWorkflows = await this.dbCollections.Workflow.count({ active: true });\n\n if (activeWorkflows > 1) {\n throw new Error(\n 'Active workflow limit reached.'\n );\n }\n }\n ]\n }\n}\n```\n\n### Hook functions\n\nA hook or a hook file can contain multiple hook functions, with all functions executed one after another.\n\nIf the parameters of the hook function are objects, it's possible to change the data of that parameter to change the behavior of n8n.\n\nYou can also access the database in any hook function using `this.dbCollections` (refer to the code sample in [Hook files](#hook-files) above).\n\n## Frontend external hooks\n\nLike backend external hooks, it's possible to define external hooks in the frontend code that get executed by n8n whenever a user performs a specific operation. You can use them, for example, to log data and change data.\n\n### Available hooks\n\n| Hook | Description |\n| ------------------------------------------ | --------------------------------------------------------------------------- |\n| `credentialsEdit.credentialTypeChanged` | Called when an existing credential's type changes. |\n| `credentials.create` | Called when someone creates a new credential. |\n| `credentialsList.dialogVisibleChanged` | |\n| `dataDisplay.nodeTypeChanged` | |\n| `dataDisplay.onDocumentationUrlClick` | Called when someone selects the help documentation link. |\n| `execution.open` | Called when an existing execution opens. |\n| `executionsList.openDialog` | Called when someone selects an execution from existing Workflow Executions. |\n| `expressionEdit.itemSelected` | |\n| `expressionEdit.dialogVisibleChanged` | |\n| `nodeCreateList.filteredNodeTypesComputed` | |\n| `nodeCreateList.nodeFilterChanged` | Called when someone makes any changes to the node panel filter. |\n| `nodeCreateList.selectedTypeChanged` | |\n| `nodeCreateList.mounted` | |\n| `nodeCreateList.destroyed` | |\n| `nodeSettings.credentialSelected` | |\n| `nodeSettings.valueChanged` | |\n| `nodeView.createNodeActiveChanged` | |\n| `nodeView.addNodeButton` | |\n| `nodeView.mount` | |\n| `pushConnection.executionFinished` | |\n| `showMessage.showError` | |\n| `runData.displayModeChanged` | |\n| `workflow.activeChange` | |\n| `workflow.activeChangeCurrent` | |\n| `workflow.afterUpdate` | Called when someone updates an existing workflow. |\n| `workflow.open` | |\n| `workflowRun.runError` | |\n| `workflowRun.runWorkflow` | Called when a workflow executes. |\n| `workflowSettings.dialogVisibleChanged` | |\n| `workflowSettings.saveSettings` | Called when someone saves the settings of a workflow. |\n\n### Registering frontend hooks\n\nYou can set hooks by loading the hooks script on the page. One way to do this is by creating a hooks file in the project and adding a script tag in your `editor-ui/public/index.html` file:\n\n```\n<script src=\"frontend-hooks.js\"></script>\n```\n\n### Frontend hook files\n\nFrontend external hook files are regular JavaScript files which have the following format:\n\n```\nwindow.n8nExternalHooks = {\n nodeView: {\n mount: [\n function (store, meta) {\n // do something\n },\n ],\n createNodeActiveChanged: [\n function (store, meta) {\n // do something\n },\n function (store, meta) {\n // do something else\n },\n ],\n addNodeButton: [\n function (store, meta) {\n // do something\n },\n ],\n },\n};\n```\n\n### Frontend hook functions\n\nYou can define multiple hook functions per hook. n8n calls each hook function with the following arguments:\n\n- `store`: The Vuex store object. You can use this to change or get data from the store.\n- `metadata`: The object that contains any data provided by the hook. To see what's passed, search for the hook in the `editor-ui` package.\n",
|
|
13538
|
+
"excerpt": "# Supported databases By default, n8n uses SQLite to save credentials, past executions, and workflows. n8n also supports PostgresDB (only [actively maintained versions](https://www.postgresql.org/support/versioning/)). ## Database type by n8n installation The database type used varies depending on your n8n installation: ### Self-hosted n8n By default, self-hosted installations use **SQLite**. You can optionally configure PostgreSQL by setting the appropriate environment variables (see [Post...",
|
|
13540
13539
|
"sections": [
|
|
13541
13540
|
{
|
|
13542
|
-
"title": "
|
|
13541
|
+
"title": "Supported databases",
|
|
13543
13542
|
"level": 1,
|
|
13544
|
-
"content": "
|
|
13543
|
+
"content": "By default, n8n uses SQLite to save credentials, past executions, and workflows. n8n also supports PostgresDB (only [actively maintained versions](https://www.postgresql.org/support/versioning/))."
|
|
13544
|
+
},
|
|
13545
|
+
{
|
|
13546
|
+
"title": "optional:",
|
|
13547
|
+
"level": 1,
|
|
13548
|
+
"content": "export DB_POSTGRESDB_SSL_CA_FILE=$(pwd)/ca.crt\nexport DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED=false\n\nn8n start\n```"
|
|
13545
13549
|
}
|
|
13546
13550
|
]
|
|
13547
13551
|
},
|
|
@@ -13559,143 +13563,65 @@
|
|
|
13559
13563
|
],
|
|
13560
13564
|
"useCases": [],
|
|
13561
13565
|
"operations": [],
|
|
13562
|
-
"codeExamples":
|
|
13566
|
+
"codeExamples": 5,
|
|
13563
13567
|
"complexity": "intermediate",
|
|
13564
13568
|
"readingTime": "6 min",
|
|
13565
13569
|
"contentLength": 14055,
|
|
13566
13570
|
"relatedPages": []
|
|
13567
13571
|
},
|
|
13568
13572
|
"searchIndex": {
|
|
13569
|
-
"fullText": "external hooks # external hooks\n\nexternal hooks let you run custom code whenever n8n performs a specific operation. use them to log data, change data, or forbid an action by throwing an error.\n\nthere are two types:\n\n- **backend hooks**: run server-side, registered using the `external_hook_files` environment variable.\n- **frontend hooks**: run in the browser, loaded with a script tag.\n\nfor the environment variables used to register hooks, refer to [external hooks environment variables](../environment-variables/external-hooks/).\n\n## backend hooks\n\n### available hooks\n\n| hook | arguments | description |\n| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |\n| `credentials.create` | `[credentialdata: icredentialsdb]` | called before new credentials get created. use to restrict the number of credentials. |\n| `credentials.delete` | `[id: credentialid]` | called before credentials get deleted. |\n| `credentials.update` | `[credentialdata: icredentialsdb]` | called before n8n saves existing credentials. |\n| `frontend.settings` | `[frontendsettings: in8nuisettings]` | gets called on n8n startup. allows you to, for example, overwrite frontend data like the displayed oauth url. |\n| `n8n.ready` | `[app: app]` | called once n8n is ready. use to, for example, register custom api endpoints. |\n| `n8n.stop` | | called when an n8n process gets stopped. allows you to save some process data. |\n| `oauth1.authenticate` | `[oauthoptions: clientoauth1.options, oauthrequestdata: {oauth_callback: string}]` | called before an oauth1 authentication. use to overwrite an oauth callback url. |\n| `oauth2.callback` | `[oauth2parameters: {clientid: string, clientsecret: string \\| undefined, accesstokenuri: string, authorizationuri: string, redirecturi: string, scopes: string[]}]` | called in an oauth2 callback. use to overwrite an oauth callback url. |\n| `workflow.activate` | `[workflowdata: iworkflowdb]` | called before a workflow gets activated. use to restrict the number of active workflows. |\n| `workflow.aftercreate` | `[workflowid: string]` | called after a workflow gets created. |\n| `workflow.afterdelete` | `[workflowid: string]` | called after a workflow gets deleted. |\n| `workflow.afterupdate` | `[workflowdata: iworkflowbase]` | called after an existing workflow gets saved. |\n| `workflow.create` | `[workflowdata: iworkflowbase]` | called before a workflow gets created. use to restrict the number of saved workflows. |\n| `workflow.delete` | `[workflowid: string]` | called before a workflow gets deleted. |\n| `workflow.postexecute` | `[run: irun, workflowdata: iworkflowbase]` | called after a workflow gets executed. |\n| `workflow.preexecute` | `[workflow: workflow: mode: workflowexecutemode]` | called before a workflow gets executed. allows you to count or limit the number of workflow executions. |\n| `workflow.update` | `[workflowdata: iworkflowbase]` | called before an existing workflow gets saved. |\n| `workflow.afterarchive` | `[workflowid: string]` | called after you archive a workflow. |\n| `workflow.afterunarchive` | `[workflowid: string]` | called after you restore a workflow from the archive. |\n\n### registering hooks\n\nset hooks by registering a hook file that contains the hook functions. to register a hook, set the environment variable `external_hook_files`.\n\nyou can set the variable to a single file:\n\n`external_hook_files=/data/hook.js`\n\nor to contain multiple files separated by a colon:\n\n`external_hook_files=/data/hook1.js:/data/hook2.js`\n\n### hook files\n\nhook files are regular javascript files that have the following format:\n\n```\nmodule.exports = {\n \"frontend\": {\n \"settings\": [\n async function (settings) {\n settings.oauthcallbackurls.oauth1 = 'https://n8n.example.com/oauth1/callback';\n settings.oauthcallbackurls.oauth2 = 'https://n8n.example.com/oauth2/callback';\n }\n ]\n },\n \"workflow\": {\n \"activate\": [\n async function (workflowdata) {\n const activeworkflows = await this.dbcollections.workflow.count({ active: true });\n\n if (activeworkflows > 1) {\n throw new error(\n 'active workflow limit reached.'\n );\n }\n }\n ]\n }\n}\n```\n\n### hook functions\n\na hook or a hook file can contain multiple hook functions, with all functions executed one after another.\n\nif the parameters of the hook function are objects, it's possible to change the data of that parameter to change the behavior of n8n.\n\nyou can also access the database in any hook function using `this.dbcollections` (refer to the code sample in [hook files](#hook-files) above).\n\n## frontend external hooks\n\nlike backend external hooks, it's possible to define external hooks in the frontend code that get executed by n8n whenever a user performs a specific operation. you can use them, for example, to log data and change data.\n\n### available hooks\n\n| hook | description |\n| ------------------------------------------ | --------------------------------------------------------------------------- |\n| `credentialsedit.credentialtypechanged` | called when an existing credential's type changes. |\n| `credentials.create` | called when someone creates a new credential. |\n| `credentialslist.dialogvisiblechanged` | |\n| `datadisplay.nodetypechanged` | |\n| `datadisplay.ondocumentationurlclick` | called when someone selects the help documentation link. |\n| `execution.open` | called when an existing execution opens. |\n| `executionslist.opendialog` | called when someone selects an execution from e",
|
|
13573
|
+
"fullText": "external hooks # supported databases\n\nby default, n8n uses sqlite to save credentials, past executions, and workflows. n8n also supports postgresdb (only [actively maintained versions](https://www.postgresql.org/support/versioning/)).\n\n## database type by n8n installation\n\nthe database type used varies depending on your n8n installation:\n\n### self-hosted n8n\n\nby default, self-hosted installations use **sqlite**. you can optionally configure postgresql by setting the appropriate environment variables (see [postgresdb configuration](#postgresdb)).\n\n### n8n cloud\n\nn8n cloud installations use different databases depending on your plan tier:\n\n- **sqlite**: trial, starter, and pro plans, as well as legacy enterprise plans\n- **postgresql**: enterprise scaling plans only\n\n## shared settings\n\nthe following environment variables get used by all databases:\n\n- `db_table_prefix` (default: -) - prefix for table names\n\n## postgresdb\n\nto use postgresdb as the database, you can provide the following environment variables:\n\n- `db_type=postgresdb`\n- `db_postgresdb_database` (default: 'n8n')\n- `db_postgresdb_host` (default: 'localhost')\n- `db_postgresdb_port` (default: 5432)\n- `db_postgresdb_user` (default: 'postgres')\n- `db_postgresdb_password` (default: empty)\n- `db_postgresdb_schema` (default: 'public')\n- `db_postgresdb_ssl_ca` (default: undefined): path to the server's ca certificate used to validate the connection (opportunistic encryption isn't supported)\n- `db_postgresdb_ssl_cert` (default: undefined): path to the client's tls certificate\n- `db_postgresdb_ssl_key` (default: undefined): path to the client's private key corresponding to the certificate\n- `db_postgresdb_ssl_reject_unauthorized` (default: true): if tls connections that fail validation should be rejected\n\n```\nexport db_type=postgresdb\nexport db_postgresdb_database=n8n\nexport db_postgresdb_host=postgresdb\nexport db_postgresdb_port=5432\nexport db_postgresdb_user=n8n\nexport db_postgresdb_password=n8n\nexport db_postgresdb_schema=n8n\n\n# optional:\nexport db_postgresdb_ssl_ca_file=$(pwd)/ca.crt\nexport db_postgresdb_ssl_reject_unauthorized=false\n\nn8n start\n```\n\n### required permissions\n\nn8n needs to create and modify the schemas of the tables it uses.\n\nrecommended permissions:\n\n```\ncreate database n8n-db;\ncreate user n8n-user with password 'random-password';\ngrant all privileges on database n8n-db to n8n-user;\n```\n\n### tls\n\nyou can choose between these configurations:\n\n- not declaring (default): connect with `ssl=off`\n- declaring only the ca and unauthorized flag: connect with `ssl=on` and verify the server's signature\n- declaring `_{cert,key}` and the above: use the certificate and key for client tls authentication\n\n## sqlite\n\nthis is the default database that gets used if nothing is defined.\n\nthe database file is located at: `~/.n8n/database.sqlite`\n | called when an n8n process gets stopped. allows you to save some process data. |\n| `oauth1.authenticate` | `[oauthoptions: clientoauth1.options, oauthrequestdata: {oauth_callback: string}]` | called before an oauth1 authentication. use to overwrite an oauth callback url. |\n| `oauth2.callback` | `[oauth2parameters: {clientid: string, clientsecret: string \\| undefined, accesstokenuri: string, authorizationuri: string, redirecturi: string, scopes: string[]}]` | called in an oauth2 callback. use to overwrite an oauth callback url. |\n| `workflow.activate` | `[workflowdata: iworkflowdb]` | called before a workflow gets activated. use to restrict the number of active workflows. |\n| `workflow.aftercreate` | `[workflowid: string]` | called after a workflow gets created. |\n| `workflow.afterdelete` | `[workflowid: string]` | called after a workflow gets deleted. |\n| `workflow.afterupdate` | `[workflowdata: iworkflowbase]` | called after an existing workflow gets saved. |\n| `workflow.create` | `[workflowdata: iworkflowbase]` | called before a workflow gets created. use to restrict the number of saved workflows. |\n| `workflow.delete` | `[workflowid: string]` | called before a workflow gets deleted. |\n| `workflow.postexecute` | `[run: irun, workflowdata: iworkflowbase]` | called after a workflow gets executed. |\n| `workflow.preexecute` | `[workflow: workflow: mode: workflowexecutemode]` | called before a workflow gets executed. allows you to count or limit the number of workflow executions. |\n| `workflow.update` | `[workflowdata: iworkflowbase]` | called before an existing workflow gets saved. |\n| `workflow.afterarchive` | `[workflowid: string]` | called after you archive a workflow. |\n| `workflow.afterunarchive` | `[workflowid: string]` | called after you restore a workflow from the archive. |\n\n### registering hooks\n\nset hooks by registering a hook file that contains the hook functions. to register a hook, set the environment variable `external_hook_files`.\n\nyou can set the variable to a single file:\n\n`external_hook_files=/data/hook.js`\n\nor to contain multiple files separated by a colon:\n\n`external_hook_files=/data/hook1.js:/data/hook2.js`\n\n### hook files\n\nhook files are regular javascript files that have the following format:\n\n```\nmodule.exports = {\n \"frontend\": {\n \"settings\": [\n async function (settings) {\n settings.oauthcallbackurls.oauth1 = 'https://n8n.example.com/oauth1/callback';\n settings.oauthcallbackurls.oauth2 = 'https://n8n.example.com/oauth2/callback';\n }\n ]\n },\n \"workflow\": {\n \"activate\": [\n async function (workflowdata) {\n const activeworkflows = await this.dbcollections.workflow.count({ active: true });\n\n if (activeworkflows > 1) {\n throw new error(\n 'active workflow limit reached.'\n );\n }\n }\n ]\n }\n}\n```\n\n### hook functions\n\na hook or a hook file can contain multiple hook functions, with all functions executed one after another.\n\nif the parameters of the hook function are objects, it's possible to change the data of that parameter to change the behavior of n8n.\n\nyou can also access the database in any hook function using `this.dbcollections` (refer to the code sample in [hook files](#hook-files) above).\n\n## frontend external hooks\n\nlike backend external hooks, it's possible to define external hooks in the frontend code that get executed by n8n whenever a user performs a specific operation. you can use them, for example, to log data and change data.\n\n### available hooks\n\n| hook | description |\n| ------------------------------------------ | --------------------------------------------------------------------------- |\n| `credentialsedit.credentialtypechanged` | called when an existing credential's type changes. |\n| `credentials.create` | called when someone creates a new credential. |\n| `credentialslist.dialogvisiblechanged` | |\n| `datadisplay.nodetypechanged` | |\n| `datadisplay.ondocumentationurlclick` | called when someone selects the help documentation link. |\n| `execution.open` | called when an existing execution opens. |\n| `executionslist.opendialog` | called when someone selects an execution from e",
|
|
13570
13574
|
"importantTerms": [
|
|
13571
13575
|
"workflow",
|
|
13572
13576
|
"called",
|
|
13573
13577
|
"hook",
|
|
13578
|
+
"default",
|
|
13574
13579
|
"hooks",
|
|
13575
|
-
"data",
|
|
13576
13580
|
"string",
|
|
13577
|
-
"frontend",
|
|
13578
13581
|
"gets",
|
|
13579
|
-
"external",
|
|
13580
13582
|
"when",
|
|
13581
|
-
"
|
|
13583
|
+
"database",
|
|
13584
|
+
"export",
|
|
13585
|
+
"data",
|
|
13582
13586
|
"files",
|
|
13583
13587
|
"function",
|
|
13584
|
-
"
|
|
13585
|
-
"
|
|
13588
|
+
"postgresdb",
|
|
13589
|
+
"frontend",
|
|
13590
|
+
"that",
|
|
13586
13591
|
"after",
|
|
13587
13592
|
"store",
|
|
13588
13593
|
"settings",
|
|
13594
|
+
"file",
|
|
13595
|
+
"before",
|
|
13589
13596
|
"callback",
|
|
13590
13597
|
"workflowdata",
|
|
13598
|
+
"existing",
|
|
13591
13599
|
"functions",
|
|
13592
13600
|
"someone",
|
|
13593
|
-
"
|
|
13594
|
-
"
|
|
13595
|
-
"
|
|
13596
|
-
"
|
|
13601
|
+
"external",
|
|
13602
|
+
"sqlite",
|
|
13603
|
+
"following",
|
|
13604
|
+
"create",
|
|
13605
|
+
"with",
|
|
13606
|
+
"this",
|
|
13597
13607
|
"workflowid",
|
|
13598
|
-
"file",
|
|
13599
|
-
"that",
|
|
13600
13608
|
"nodecreatelist",
|
|
13601
|
-
"
|
|
13609
|
+
"databases",
|
|
13610
|
+
"used",
|
|
13611
|
+
"environment",
|
|
13612
|
+
"undefined",
|
|
13613
|
+
"certificate",
|
|
13614
|
+
"user",
|
|
13602
13615
|
"iworkflowbase",
|
|
13603
13616
|
"executed",
|
|
13604
|
-
"
|
|
13617
|
+
"change",
|
|
13605
13618
|
"nodeview",
|
|
13619
|
+
"script",
|
|
13606
13620
|
"meta",
|
|
13607
13621
|
"something",
|
|
13608
|
-
"code",
|
|
13609
|
-
"backend",
|
|
13610
|
-
"variable",
|
|
13611
|
-
"with",
|
|
13612
|
-
"variables",
|
|
13613
|
-
"register",
|
|
13614
|
-
"create",
|
|
13615
|
-
"created",
|
|
13616
|
-
"restrict",
|
|
13617
|
-
"deleted",
|
|
13618
|
-
"allows",
|
|
13619
|
-
"overwrite",
|
|
13620
|
-
"oauth"
|
|
13621
|
-
]
|
|
13622
|
-
}
|
|
13623
|
-
},
|
|
13624
|
-
{
|
|
13625
|
-
"id": "page-0153",
|
|
13626
|
-
"title": "Supported databases and settings",
|
|
13627
|
-
"url": "https://docs.n8n.io/hosting/configuration/supported-databases-settings/index.md",
|
|
13628
|
-
"urlPath": "hosting/configuration/supported-databases-settings/index.md",
|
|
13629
|
-
"category": "hosting",
|
|
13630
|
-
"subcategory": null,
|
|
13631
|
-
"nodeName": null,
|
|
13632
|
-
"nodeType": null,
|
|
13633
|
-
"content": {
|
|
13634
|
-
"markdown": "# Supported databases\n\nBy default, n8n uses SQLite to save credentials, past executions, and workflows. n8n also supports PostgresDB (only [actively maintained versions](https://www.postgresql.org/support/versioning/)).\n\n## Database type by n8n installation\n\nThe database type used varies depending on your n8n installation:\n\n### Self-hosted n8n\n\nBy default, self-hosted installations use **SQLite**. You can optionally configure PostgreSQL by setting the appropriate environment variables (see [PostgresDB configuration](#postgresdb)).\n\n### n8n Cloud\n\nn8n Cloud installations use different databases depending on your plan tier:\n\n- **SQLite**: Trial, Starter, and Pro plans, as well as legacy Enterprise plans\n- **PostgreSQL**: Enterprise Scaling plans only\n\n## Shared settings\n\nThe following environment variables get used by all databases:\n\n- `DB_TABLE_PREFIX` (default: -) - Prefix for table names\n\n## PostgresDB\n\nTo use PostgresDB as the database, you can provide the following environment variables:\n\n- `DB_TYPE=postgresdb`\n- `DB_POSTGRESDB_DATABASE` (default: 'n8n')\n- `DB_POSTGRESDB_HOST` (default: 'localhost')\n- `DB_POSTGRESDB_PORT` (default: 5432)\n- `DB_POSTGRESDB_USER` (default: 'postgres')\n- `DB_POSTGRESDB_PASSWORD` (default: empty)\n- `DB_POSTGRESDB_SCHEMA` (default: 'public')\n- `DB_POSTGRESDB_SSL_CA` (default: undefined): Path to the server's CA certificate used to validate the connection (opportunistic encryption isn't supported)\n- `DB_POSTGRESDB_SSL_CERT` (default: undefined): Path to the client's TLS certificate\n- `DB_POSTGRESDB_SSL_KEY` (default: undefined): Path to the client's private key corresponding to the certificate\n- `DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED` (default: true): If TLS connections that fail validation should be rejected\n\n```\nexport DB_TYPE=postgresdb\nexport DB_POSTGRESDB_DATABASE=n8n\nexport DB_POSTGRESDB_HOST=postgresdb\nexport DB_POSTGRESDB_PORT=5432\nexport DB_POSTGRESDB_USER=n8n\nexport DB_POSTGRESDB_PASSWORD=n8n\nexport DB_POSTGRESDB_SCHEMA=n8n\n\n# optional:\nexport DB_POSTGRESDB_SSL_CA_FILE=$(pwd)/ca.crt\nexport DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED=false\n\nn8n start\n```\n\n### Required permissions\n\nn8n needs to create and modify the schemas of the tables it uses.\n\nRecommended permissions:\n\n```\nCREATE DATABASE n8n-db;\nCREATE USER n8n-user WITH PASSWORD 'random-password';\nGRANT ALL PRIVILEGES ON DATABASE n8n-db TO n8n-user;\n```\n\n### TLS\n\nYou can choose between these configurations:\n\n- Not declaring (default): Connect with `SSL=off`\n- Declaring only the CA and unauthorized flag: Connect with `SSL=on` and verify the server's signature\n- Declaring `_{CERT,KEY}` and the above: Use the certificate and key for client TLS authentication\n\n## SQLite\n\nThis is the default database that gets used if nothing is defined.\n\nThe database file is located at: `~/.n8n/database.sqlite`\n",
|
|
13635
|
-
"excerpt": "# Supported databases By default, n8n uses SQLite to save credentials, past executions, and workflows. n8n also supports PostgresDB (only [actively maintained versions](https://www.postgresql.org/support/versioning/)). ## Database type by n8n installation The database type used varies depending on your n8n installation: ### Self-hosted n8n By default, self-hosted installations use **SQLite**. You can optionally configure PostgreSQL by setting the appropriate environment variables (see [Post...",
|
|
13636
|
-
"sections": [
|
|
13637
|
-
{
|
|
13638
|
-
"title": "Supported databases",
|
|
13639
|
-
"level": 1,
|
|
13640
|
-
"content": "By default, n8n uses SQLite to save credentials, past executions, and workflows. n8n also supports PostgresDB (only [actively maintained versions](https://www.postgresql.org/support/versioning/))."
|
|
13641
|
-
},
|
|
13642
|
-
{
|
|
13643
|
-
"title": "optional:",
|
|
13644
|
-
"level": 1,
|
|
13645
|
-
"content": "export DB_POSTGRESDB_SSL_CA_FILE=$(pwd)/ca.crt\nexport DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED=false\n\nn8n start\n```"
|
|
13646
|
-
}
|
|
13647
|
-
]
|
|
13648
|
-
},
|
|
13649
|
-
"metadata": {
|
|
13650
|
-
"keywords": [
|
|
13651
|
-
"supported",
|
|
13652
|
-
"databases",
|
|
13653
|
-
"settings",
|
|
13654
|
-
"database",
|
|
13655
|
-
"type",
|
|
13656
|
-
"installation",
|
|
13657
|
-
"self",
|
|
13658
|
-
"hosted",
|
|
13659
|
-
"cloud",
|
|
13660
|
-
"shared",
|
|
13661
|
-
"postgresdb",
|
|
13662
|
-
"optional:",
|
|
13663
|
-
"required",
|
|
13664
|
-
"permissions",
|
|
13665
|
-
"sqlite"
|
|
13666
|
-
],
|
|
13667
|
-
"useCases": [],
|
|
13668
|
-
"operations": [],
|
|
13669
|
-
"codeExamples": 2,
|
|
13670
|
-
"complexity": "beginner",
|
|
13671
|
-
"readingTime": "2 min",
|
|
13672
|
-
"contentLength": 2829,
|
|
13673
|
-
"relatedPages": []
|
|
13674
|
-
},
|
|
13675
|
-
"searchIndex": {
|
|
13676
|
-
"fullText": "supported databases and settings # supported databases\n\nby default, n8n uses sqlite to save credentials, past executions, and workflows. n8n also supports postgresdb (only [actively maintained versions](https://www.postgresql.org/support/versioning/)).\n\n## database type by n8n installation\n\nthe database type used varies depending on your n8n installation:\n\n### self-hosted n8n\n\nby default, self-hosted installations use **sqlite**. you can optionally configure postgresql by setting the appropriate environment variables (see [postgresdb configuration](#postgresdb)).\n\n### n8n cloud\n\nn8n cloud installations use different databases depending on your plan tier:\n\n- **sqlite**: trial, starter, and pro plans, as well as legacy enterprise plans\n- **postgresql**: enterprise scaling plans only\n\n## shared settings\n\nthe following environment variables get used by all databases:\n\n- `db_table_prefix` (default: -) - prefix for table names\n\n## postgresdb\n\nto use postgresdb as the database, you can provide the following environment variables:\n\n- `db_type=postgresdb`\n- `db_postgresdb_database` (default: 'n8n')\n- `db_postgresdb_host` (default: 'localhost')\n- `db_postgresdb_port` (default: 5432)\n- `db_postgresdb_user` (default: 'postgres')\n- `db_postgresdb_password` (default: empty)\n- `db_postgresdb_schema` (default: 'public')\n- `db_postgresdb_ssl_ca` (default: undefined): path to the server's ca certificate used to validate the connection (opportunistic encryption isn't supported)\n- `db_postgresdb_ssl_cert` (default: undefined): path to the client's tls certificate\n- `db_postgresdb_ssl_key` (default: undefined): path to the client's private key corresponding to the certificate\n- `db_postgresdb_ssl_reject_unauthorized` (default: true): if tls connections that fail validation should be rejected\n\n```\nexport db_type=postgresdb\nexport db_postgresdb_database=n8n\nexport db_postgresdb_host=postgresdb\nexport db_postgresdb_port=5432\nexport db_postgresdb_user=n8n\nexport db_postgresdb_password=n8n\nexport db_postgresdb_schema=n8n\n\n# optional:\nexport db_postgresdb_ssl_ca_file=$(pwd)/ca.crt\nexport db_postgresdb_ssl_reject_unauthorized=false\n\nn8n start\n```\n\n### required permissions\n\nn8n needs to create and modify the schemas of the tables it uses.\n\nrecommended permissions:\n\n```\ncreate database n8n-db;\ncreate user n8n-user with password 'random-password';\ngrant all privileges on database n8n-db to n8n-user;\n```\n\n### tls\n\nyou can choose between these configurations:\n\n- not declaring (default): connect with `ssl=off`\n- declaring only the ca and unauthorized flag: connect with `ssl=on` and verify the server's signature\n- declaring `_{cert,key}` and the above: use the certificate and key for client tls authentication\n\n## sqlite\n\nthis is the default database that gets used if nothing is defined.\n\nthe database file is located at: `~/.n8n/database.sqlite`\n supported databases optional:",
|
|
13677
|
-
"importantTerms": [
|
|
13678
|
-
"default",
|
|
13679
|
-
"export",
|
|
13680
|
-
"postgresdb",
|
|
13681
|
-
"database",
|
|
13682
|
-
"databases",
|
|
13683
|
-
"sqlite",
|
|
13684
13622
|
"supported",
|
|
13685
|
-
"
|
|
13686
|
-
"
|
|
13687
|
-
"only",
|
|
13688
|
-
"postgresql",
|
|
13689
|
-
"environment",
|
|
13690
|
-
"variables",
|
|
13691
|
-
"plans",
|
|
13692
|
-
"undefined",
|
|
13693
|
-
"path",
|
|
13694
|
-
"client",
|
|
13695
|
-
"create",
|
|
13696
|
-
"user",
|
|
13697
|
-
"with",
|
|
13698
|
-
"declaring"
|
|
13623
|
+
"executions",
|
|
13624
|
+
"workflows"
|
|
13699
13625
|
]
|
|
13700
13626
|
}
|
|
13701
13627
|
},
|
|
@@ -19391,6 +19317,57 @@
|
|
|
19391
19317
|
},
|
|
19392
19318
|
{
|
|
19393
19319
|
"id": "page-0221",
|
|
19320
|
+
"title": "Disable the API",
|
|
19321
|
+
"url": "https://docs.n8n.io/hosting/securing/disable-public-api/index.md",
|
|
19322
|
+
"urlPath": "hosting/securing/disable-public-api/index.md",
|
|
19323
|
+
"category": "hosting",
|
|
19324
|
+
"subcategory": null,
|
|
19325
|
+
"nodeName": null,
|
|
19326
|
+
"nodeType": null,
|
|
19327
|
+
"content": {
|
|
19328
|
+
"markdown": "# Disable the public REST API\n\nThe [n8n public REST API](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n GUI.\n\nIf you don't plan on using this API, n8n recommends disabling it to improve the security of your n8n installation.\n\nTo disable the [public REST API](../../../api/), set the `N8N_PUBLIC_API_DISABLED` environment variable to `true`, for example:\n\n```\nexport N8N_PUBLIC_API_DISABLED=true\n```\n\n## Disable the API playground\n\nTo disable the [API playground](../../../api/using-api-playground/), set the `N8N_PUBLIC_API_SWAGGERUI_DISABLED` environment variable to `true`, for example:\n\n```\nexport N8N_PUBLIC_API_SWAGGERUI_DISABLED=true\n```\n\n## Related resources\n\nRefer to [Deployment environment variables](../../configuration/environment-variables/deployment/) for more information on these environment variables.\n\nRefer to [Configuration](../../configuration/configuration-methods/) for more information on setting environment variables.\n",
|
|
19329
|
+
"excerpt": "# Disable the public REST API The [n8n public REST API](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n GUI. If you don't plan on using this API, n8n recommends disabling it to improve the security of your n8n installation. To disable the [public REST API](../../../api/), set the `N8N_PUBLIC_API_DISABLED` environment variable to `true`, for example: ``` export N8N_PUBLIC_API_DISABLED=true ``` ## Disable the API playground To disable the [A...",
|
|
19330
|
+
"sections": [
|
|
19331
|
+
{
|
|
19332
|
+
"title": "Disable the public REST API",
|
|
19333
|
+
"level": 1,
|
|
19334
|
+
"content": "The [n8n public REST API](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n GUI.\n\nIf you don't plan on using this API, n8n recommends disabling it to improve the security of your n8n installation.\n\nTo disable the [public REST API](../../../api/), set the `N8N_PUBLIC_API_DISABLED` environment variable to `true`, for example:\n\n```\nexport N8N_PUBLIC_API_DISABLED=true\n```"
|
|
19335
|
+
}
|
|
19336
|
+
]
|
|
19337
|
+
},
|
|
19338
|
+
"metadata": {
|
|
19339
|
+
"keywords": [
|
|
19340
|
+
"disable",
|
|
19341
|
+
"public",
|
|
19342
|
+
"rest",
|
|
19343
|
+
"playground",
|
|
19344
|
+
"related",
|
|
19345
|
+
"resources"
|
|
19346
|
+
],
|
|
19347
|
+
"useCases": [],
|
|
19348
|
+
"operations": [],
|
|
19349
|
+
"codeExamples": 2,
|
|
19350
|
+
"complexity": "beginner",
|
|
19351
|
+
"readingTime": "1 min",
|
|
19352
|
+
"contentLength": 996,
|
|
19353
|
+
"relatedPages": []
|
|
19354
|
+
},
|
|
19355
|
+
"searchIndex": {
|
|
19356
|
+
"fullText": "disable the api # disable the public rest api\n\nthe [n8n public rest api](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n gui.\n\nif you don't plan on using this api, n8n recommends disabling it to improve the security of your n8n installation.\n\nto disable the [public rest api](../../../api/), set the `n8n_public_api_disabled` environment variable to `true`, for example:\n\n```\nexport n8n_public_api_disabled=true\n```\n\n## disable the api playground\n\nto disable the [api playground](../../../api/using-api-playground/), set the `n8n_public_api_swaggerui_disabled` environment variable to `true`, for example:\n\n```\nexport n8n_public_api_swaggerui_disabled=true\n```\n\n## related resources\n\nrefer to [deployment environment variables](../../configuration/environment-variables/deployment/) for more information on these environment variables.\n\nrefer to [configuration](../../configuration/configuration-methods/) for more information on setting environment variables.\n disable the public rest api",
|
|
19357
|
+
"importantTerms": [
|
|
19358
|
+
"disable",
|
|
19359
|
+
"environment",
|
|
19360
|
+
"public",
|
|
19361
|
+
"rest",
|
|
19362
|
+
"true",
|
|
19363
|
+
"variables",
|
|
19364
|
+
"configuration",
|
|
19365
|
+
"playground"
|
|
19366
|
+
]
|
|
19367
|
+
}
|
|
19368
|
+
},
|
|
19369
|
+
{
|
|
19370
|
+
"id": "page-0222",
|
|
19394
19371
|
"title": "Hardening task runners",
|
|
19395
19372
|
"url": "https://docs.n8n.io/hosting/securing/hardening-task-runners/index.md",
|
|
19396
19373
|
"urlPath": "hosting/securing/hardening-task-runners/index.md",
|
|
@@ -19463,7 +19440,7 @@
|
|
|
19463
19440
|
}
|
|
19464
19441
|
},
|
|
19465
19442
|
{
|
|
19466
|
-
"id": "page-
|
|
19443
|
+
"id": "page-0223",
|
|
19467
19444
|
"title": "Overview",
|
|
19468
19445
|
"url": "https://docs.n8n.io/hosting/securing/overview/index.md",
|
|
19469
19446
|
"urlPath": "hosting/securing/overview/index.md",
|
|
@@ -19512,7 +19489,7 @@
|
|
|
19512
19489
|
}
|
|
19513
19490
|
},
|
|
19514
19491
|
{
|
|
19515
|
-
"id": "page-
|
|
19492
|
+
"id": "page-0224",
|
|
19516
19493
|
"title": "Restrict account registration to email-verified users",
|
|
19517
19494
|
"url": "https://docs.n8n.io/hosting/securing/restrict-by-email-verification/index.md",
|
|
19518
19495
|
"urlPath": "hosting/securing/restrict-by-email-verification/index.md",
|
|
@@ -19562,57 +19539,6 @@
|
|
|
19562
19539
|
]
|
|
19563
19540
|
}
|
|
19564
19541
|
},
|
|
19565
|
-
{
|
|
19566
|
-
"id": "page-0224",
|
|
19567
|
-
"title": "Disable the API",
|
|
19568
|
-
"url": "https://docs.n8n.io/hosting/securing/disable-public-api/index.md",
|
|
19569
|
-
"urlPath": "hosting/securing/disable-public-api/index.md",
|
|
19570
|
-
"category": "hosting",
|
|
19571
|
-
"subcategory": null,
|
|
19572
|
-
"nodeName": null,
|
|
19573
|
-
"nodeType": null,
|
|
19574
|
-
"content": {
|
|
19575
|
-
"markdown": "# Disable the public REST API\n\nThe [n8n public REST API](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n GUI.\n\nIf you don't plan on using this API, n8n recommends disabling it to improve the security of your n8n installation.\n\nTo disable the [public REST API](../../../api/), set the `N8N_PUBLIC_API_DISABLED` environment variable to `true`, for example:\n\n```\nexport N8N_PUBLIC_API_DISABLED=true\n```\n\n## Disable the API playground\n\nTo disable the [API playground](../../../api/using-api-playground/), set the `N8N_PUBLIC_API_SWAGGERUI_DISABLED` environment variable to `true`, for example:\n\n```\nexport N8N_PUBLIC_API_SWAGGERUI_DISABLED=true\n```\n\n## Related resources\n\nRefer to [Deployment environment variables](../../configuration/environment-variables/deployment/) for more information on these environment variables.\n\nRefer to [Configuration](../../configuration/configuration-methods/) for more information on setting environment variables.\n",
|
|
19576
|
-
"excerpt": "# Disable the public REST API The [n8n public REST API](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n GUI. If you don't plan on using this API, n8n recommends disabling it to improve the security of your n8n installation. To disable the [public REST API](../../../api/), set the `N8N_PUBLIC_API_DISABLED` environment variable to `true`, for example: ``` export N8N_PUBLIC_API_DISABLED=true ``` ## Disable the API playground To disable the [A...",
|
|
19577
|
-
"sections": [
|
|
19578
|
-
{
|
|
19579
|
-
"title": "Disable the public REST API",
|
|
19580
|
-
"level": 1,
|
|
19581
|
-
"content": "The [n8n public REST API](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n GUI.\n\nIf you don't plan on using this API, n8n recommends disabling it to improve the security of your n8n installation.\n\nTo disable the [public REST API](../../../api/), set the `N8N_PUBLIC_API_DISABLED` environment variable to `true`, for example:\n\n```\nexport N8N_PUBLIC_API_DISABLED=true\n```"
|
|
19582
|
-
}
|
|
19583
|
-
]
|
|
19584
|
-
},
|
|
19585
|
-
"metadata": {
|
|
19586
|
-
"keywords": [
|
|
19587
|
-
"disable",
|
|
19588
|
-
"public",
|
|
19589
|
-
"rest",
|
|
19590
|
-
"playground",
|
|
19591
|
-
"related",
|
|
19592
|
-
"resources"
|
|
19593
|
-
],
|
|
19594
|
-
"useCases": [],
|
|
19595
|
-
"operations": [],
|
|
19596
|
-
"codeExamples": 2,
|
|
19597
|
-
"complexity": "beginner",
|
|
19598
|
-
"readingTime": "1 min",
|
|
19599
|
-
"contentLength": 996,
|
|
19600
|
-
"relatedPages": []
|
|
19601
|
-
},
|
|
19602
|
-
"searchIndex": {
|
|
19603
|
-
"fullText": "disable the api # disable the public rest api\n\nthe [n8n public rest api](../../../api/) allows you to programmatically perform many of the same tasks as you can in the n8n gui.\n\nif you don't plan on using this api, n8n recommends disabling it to improve the security of your n8n installation.\n\nto disable the [public rest api](../../../api/), set the `n8n_public_api_disabled` environment variable to `true`, for example:\n\n```\nexport n8n_public_api_disabled=true\n```\n\n## disable the api playground\n\nto disable the [api playground](../../../api/using-api-playground/), set the `n8n_public_api_swaggerui_disabled` environment variable to `true`, for example:\n\n```\nexport n8n_public_api_swaggerui_disabled=true\n```\n\n## related resources\n\nrefer to [deployment environment variables](../../configuration/environment-variables/deployment/) for more information on these environment variables.\n\nrefer to [configuration](../../configuration/configuration-methods/) for more information on setting environment variables.\n disable the public rest api",
|
|
19604
|
-
"importantTerms": [
|
|
19605
|
-
"disable",
|
|
19606
|
-
"environment",
|
|
19607
|
-
"public",
|
|
19608
|
-
"rest",
|
|
19609
|
-
"true",
|
|
19610
|
-
"variables",
|
|
19611
|
-
"configuration",
|
|
19612
|
-
"playground"
|
|
19613
|
-
]
|
|
19614
|
-
}
|
|
19615
|
-
},
|
|
19616
19542
|
{
|
|
19617
19543
|
"id": "page-0225",
|
|
19618
19544
|
"title": "Security audit",
|
|
@@ -42651,7 +42577,7 @@
|
|
|
42651
42577
|
"nodeName": null,
|
|
42652
42578
|
"nodeType": null,
|
|
42653
42579
|
"content": {
|
|
42654
|
-
"markdown": "# Summarization Chain node\n\nUse the Summarization Chain node to summarize multiple documents.\n\nOn this page, you'll find the node parameters for the Summarization Chain node, and links to more resources.\n\n## Node parameters\n\nChoose the type of data you need to summarize in **Data to Summarize**. The data type you choose determines the other node parameters.\n\n- **Use Node Input (JSON)** and **Use Node Input (Binary)**: summarize the data coming into the node from the workflow.\n - You can configure the **Chunking Strategy**: choose what strategy to use to define the data chunk sizes.\n - If you choose **Simple (Define Below)** you can then set **Characters Per Chunk** and **Chunk Overlap (Characters)**.\n - Choose **Advanced** if you want to connect a splitter sub-node that provides more configuration options.\n- **Use Document Loader**: summarize data provided by a document loader sub-node.\n\n## Node Options\n\nYou can configure the summarization method and prompts. Select **Add Option** > **Summarization Method and Prompts**.\n\nOptions in **Summarization Method**:\n\n- **Map Reduce**: this is the recommended option. Learn more about [Map Reduce](https://js.langchain.com/v0.1/docs/modules/chains/document/map_reduce/) in the LangChain documentation.\n- **Refine**: learn more about [Refine](https://js.langchain.com/v0.1/docs/modules/chains/document/refine/) in the LangChain documentation.\n- **Stuff**: learn more about [Stuff](https://js.langchain.com/v0.1/docs/modules/chains/document/stuff/) in the LangChain documentation.\n\nYou can customize the **Individual Summary Prompts** and the **Final Prompt to Combine**. There are examples in the node. You must include the `\"{text}\"` placeholder.\n\n## Templates and examples\n\n**Scrape and summarize webpages with AI**\n\nby n8n Team\n\n[View template details](https://n8n.io/workflows/1951-scrape-and-summarize-webpages-with-ai/)\n\n
|
|
42580
|
+
"markdown": "# Summarization Chain node\n\nUse the Summarization Chain node to summarize multiple documents.\n\nOn this page, you'll find the node parameters for the Summarization Chain node, and links to more resources.\n\n## Node parameters\n\nChoose the type of data you need to summarize in **Data to Summarize**. The data type you choose determines the other node parameters.\n\n- **Use Node Input (JSON)** and **Use Node Input (Binary)**: summarize the data coming into the node from the workflow.\n - You can configure the **Chunking Strategy**: choose what strategy to use to define the data chunk sizes.\n - If you choose **Simple (Define Below)** you can then set **Characters Per Chunk** and **Chunk Overlap (Characters)**.\n - Choose **Advanced** if you want to connect a splitter sub-node that provides more configuration options.\n- **Use Document Loader**: summarize data provided by a document loader sub-node.\n\n## Node Options\n\nYou can configure the summarization method and prompts. Select **Add Option** > **Summarization Method and Prompts**.\n\nOptions in **Summarization Method**:\n\n- **Map Reduce**: this is the recommended option. Learn more about [Map Reduce](https://js.langchain.com/v0.1/docs/modules/chains/document/map_reduce/) in the LangChain documentation.\n- **Refine**: learn more about [Refine](https://js.langchain.com/v0.1/docs/modules/chains/document/refine/) in the LangChain documentation.\n- **Stuff**: learn more about [Stuff](https://js.langchain.com/v0.1/docs/modules/chains/document/stuff/) in the LangChain documentation.\n\nYou can customize the **Individual Summary Prompts** and the **Final Prompt to Combine**. There are examples in the node. You must include the `\"{text}\"` placeholder.\n\n## Templates and examples\n\n**Scrape and summarize webpages with AI**\n\nby n8n Team\n\n[View template details](https://n8n.io/workflows/1951-scrape-and-summarize-webpages-with-ai/)\n\n**⚡AI-Powered YouTube Video Summarization & Analysis**\n\nby Joseph LePage\n\n[View template details](https://n8n.io/workflows/2679-ai-powered-youtube-video-summarization-and-analysis/)\n\n**AI Automated HR Workflow for CV Analysis and Candidate Evaluation**\n\nby Davide Boizza\n\n[View template details](https://n8n.io/workflows/2860-ai-automated-hr-workflow-for-cv-analysis-and-candidate-evaluation/)\n\n[Browse Summarization Chain integration templates](https://n8n.io/integrations/summarization-chain/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's documentation on summarization](https://js.langchain.com/docs/tutorials/summarization/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
|
|
42655
42581
|
"excerpt": "# Summarization Chain node Use the Summarization Chain node to summarize multiple documents. On this page, you'll find the node parameters for the Summarization Chain node, and links to more resources. ## Node parameters Choose the type of data you need to summarize in **Data to Summarize**. The data type you choose determines the other node parameters. - **Use Node Input (JSON)** and **Use Node Input (Binary)**: summarize the data coming into the node from the workflow. - You can configu...",
|
|
42656
42582
|
"sections": [
|
|
42657
42583
|
{
|
|
@@ -42678,11 +42604,11 @@
|
|
|
42678
42604
|
"codeExamples": 0,
|
|
42679
42605
|
"complexity": "beginner",
|
|
42680
42606
|
"readingTime": "2 min",
|
|
42681
|
-
"contentLength":
|
|
42607
|
+
"contentLength": 2683,
|
|
42682
42608
|
"relatedPages": []
|
|
42683
42609
|
},
|
|
42684
42610
|
"searchIndex": {
|
|
42685
|
-
"fullText": "summarization chain # summarization chain node\n\nuse the summarization chain node to summarize multiple documents.\n\non this page, you'll find the node parameters for the summarization chain node, and links to more resources.\n\n## node parameters\n\nchoose the type of data you need to summarize in **data to summarize**. the data type you choose determines the other node parameters.\n\n- **use node input (json)** and **use node input (binary)**: summarize the data coming into the node from the workflow.\n - you can configure the **chunking strategy**: choose what strategy to use to define the data chunk sizes.\n - if you choose **simple (define below)** you can then set **characters per chunk** and **chunk overlap (characters)**.\n - choose **advanced** if you want to connect a splitter sub-node that provides more configuration options.\n- **use document loader**: summarize data provided by a document loader sub-node.\n\n## node options\n\nyou can configure the summarization method and prompts. select **add option** > **summarization method and prompts**.\n\noptions in **summarization method**:\n\n- **map reduce**: this is the recommended option. learn more about [map reduce](https://js.langchain.com/v0.1/docs/modules/chains/document/map_reduce/) in the langchain documentation.\n- **refine**: learn more about [refine](https://js.langchain.com/v0.1/docs/modules/chains/document/refine/) in the langchain documentation.\n- **stuff**: learn more about [stuff](https://js.langchain.com/v0.1/docs/modules/chains/document/stuff/) in the langchain documentation.\n\nyou can customize the **individual summary prompts** and the **final prompt to combine**. there are examples in the node. you must include the `\"{text}\"` placeholder.\n\n## templates and examples\n\n**scrape and summarize webpages with ai**\n\nby n8n team\n\n[view template details](https://n8n.io/workflows/1951-scrape-and-summarize-webpages-with-ai/)\n\n
|
|
42611
|
+
"fullText": "summarization chain # summarization chain node\n\nuse the summarization chain node to summarize multiple documents.\n\non this page, you'll find the node parameters for the summarization chain node, and links to more resources.\n\n## node parameters\n\nchoose the type of data you need to summarize in **data to summarize**. the data type you choose determines the other node parameters.\n\n- **use node input (json)** and **use node input (binary)**: summarize the data coming into the node from the workflow.\n - you can configure the **chunking strategy**: choose what strategy to use to define the data chunk sizes.\n - if you choose **simple (define below)** you can then set **characters per chunk** and **chunk overlap (characters)**.\n - choose **advanced** if you want to connect a splitter sub-node that provides more configuration options.\n- **use document loader**: summarize data provided by a document loader sub-node.\n\n## node options\n\nyou can configure the summarization method and prompts. select **add option** > **summarization method and prompts**.\n\noptions in **summarization method**:\n\n- **map reduce**: this is the recommended option. learn more about [map reduce](https://js.langchain.com/v0.1/docs/modules/chains/document/map_reduce/) in the langchain documentation.\n- **refine**: learn more about [refine](https://js.langchain.com/v0.1/docs/modules/chains/document/refine/) in the langchain documentation.\n- **stuff**: learn more about [stuff](https://js.langchain.com/v0.1/docs/modules/chains/document/stuff/) in the langchain documentation.\n\nyou can customize the **individual summary prompts** and the **final prompt to combine**. there are examples in the node. you must include the `\"{text}\"` placeholder.\n\n## templates and examples\n\n**scrape and summarize webpages with ai**\n\nby n8n team\n\n[view template details](https://n8n.io/workflows/1951-scrape-and-summarize-webpages-with-ai/)\n\n**⚡ai-powered youtube video summarization & analysis**\n\nby joseph lepage\n\n[view template details](https://n8n.io/workflows/2679-ai-powered-youtube-video-summarization-and-analysis/)\n\n**ai automated hr workflow for cv analysis and candidate evaluation**\n\nby davide boizza\n\n[view template details](https://n8n.io/workflows/2860-ai-automated-hr-workflow-for-cv-analysis-and-candidate-evaluation/)\n\n[browse summarization chain integration templates](https://n8n.io/integrations/summarization-chain/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's documentation on summarization](https://js.langchain.com/docs/tutorials/summarization/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n summarization chain node",
|
|
42686
42612
|
"importantTerms": [
|
|
42687
42613
|
"summarization",
|
|
42688
42614
|
"node",
|
|
@@ -76067,28 +75993,29 @@
|
|
|
76067
75993
|
},
|
|
76068
75994
|
{
|
|
76069
75995
|
"id": "page-1008",
|
|
76070
|
-
"title": "
|
|
76071
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/
|
|
76072
|
-
"urlPath": "integrations/builtin/credentials/
|
|
75996
|
+
"title": "Venafi TLS Protect Datacenter credentials",
|
|
75997
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/venafitlsprotectdatacenter/index.md",
|
|
75998
|
+
"urlPath": "integrations/builtin/credentials/venafitlsprotectdatacenter/index.md",
|
|
76073
75999
|
"category": "other",
|
|
76074
76000
|
"subcategory": null,
|
|
76075
76001
|
"nodeName": null,
|
|
76076
76002
|
"nodeType": null,
|
|
76077
76003
|
"content": {
|
|
76078
|
-
"markdown": "#
|
|
76079
|
-
"excerpt": "#
|
|
76004
|
+
"markdown": "# Venafi TLS Protect Datacenter credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Venafi TLS Protect Datacenter node](../../app-nodes/n8n-nodes-base.venafitlsprotectdatacenter/)\n\n## Prerequisites\n\n- Create a Venafi [TLS Protect Datacenter](https://venafi.com/) account.\n- Set the expiration and refresh time for tokens. Refer to [Setting up token authentication](https://docs.venafi.com/Docs/current/TopNav/Content/SDK/AuthSDK/t-SDKa-Setup-OAuth.php) for more information.\n- Create an [API integration](https://docs.venafi.com/Docs/current/TopNav/Content/API-ApplicationIntegration/c-APIAppIntegrations-about.php) in **API > Integrations**. Refer to [Integrating other systems with Venafi products](https://docs.venafi.com/Docs/current/TopNav/Content/API-ApplicationIntegration/t-APIAppIntegrations-creating.php) for detailed instructions.\n - Take note of the Client ID for your integration.\n - Choose the scopes needed for the operations you want to perform within n8n. Refer to the scopes table in [Integrating other systems with Venafi products](https://docs.venafi.com/Docs/current/TopNav/Content/API-ApplicationIntegration/t-APIAppIntegrations-creating.php) for more details on available scopes.\n\n## Supported authentication methods\n\n- API integration\n\n## Related resources\n\nRefer to [Venafi's API integration documentation](https://docs.venafi.com/Docs/currentSDK/TopNav/Content/SDK/WebSDK/c-sdk-AboutThisGuide.php) for more information about the service.\n\n## Using API integration\n\nTo configure this credential, you'll need:\n\n- A **Domain**: Enter your Venafi TLS Protect Datacenter domain.\n- A **Client ID**: Enter the **Client ID** from your API integration. Refer to the information and links in [Prerequisites](#prerequisites) for more information on creating an API integration.\n- A **Username**: Enter your username.\n- A **Password**: Enter your password.\n- **Allow Self-Signed Certificates**: If turned on, the credential will allow self-signed certificates.\n",
|
|
76005
|
+
"excerpt": "# Venafi TLS Protect Datacenter credentials You can use these credentials to authenticate the following nodes: - [Venafi TLS Protect Datacenter node](../../app-nodes/n8n-nodes-base.venafitlsprotectdatacenter/) ## Prerequisites - Create a Venafi [TLS Protect Datacenter](https://venafi.com/) account. - Set the expiration and refresh time for tokens. Refer to [Setting up token authentication](https://docs.venafi.com/Docs/current/TopNav/Content/SDK/AuthSDK/t-SDKa-Setup-OAuth.php) for more inform...",
|
|
76080
76006
|
"sections": [
|
|
76081
76007
|
{
|
|
76082
|
-
"title": "
|
|
76008
|
+
"title": "Venafi TLS Protect Datacenter credentials",
|
|
76083
76009
|
"level": 1,
|
|
76084
|
-
"content": "You can use these credentials to authenticate the following nodes:\n\n- [
|
|
76010
|
+
"content": "You can use these credentials to authenticate the following nodes:\n\n- [Venafi TLS Protect Datacenter node](../../app-nodes/n8n-nodes-base.venafitlsprotectdatacenter/)"
|
|
76085
76011
|
}
|
|
76086
76012
|
]
|
|
76087
76013
|
},
|
|
76088
76014
|
"metadata": {
|
|
76089
76015
|
"keywords": [
|
|
76090
|
-
"
|
|
76091
|
-
"
|
|
76016
|
+
"venafi",
|
|
76017
|
+
"protect",
|
|
76018
|
+
"datacenter",
|
|
76092
76019
|
"credentials",
|
|
76093
76020
|
"prerequisites",
|
|
76094
76021
|
"supported",
|
|
@@ -76097,58 +76024,68 @@
|
|
|
76097
76024
|
"related",
|
|
76098
76025
|
"resources",
|
|
76099
76026
|
"using",
|
|
76100
|
-
"
|
|
76101
|
-
"token"
|
|
76027
|
+
"integration"
|
|
76102
76028
|
],
|
|
76103
76029
|
"useCases": [],
|
|
76104
76030
|
"operations": [],
|
|
76105
76031
|
"codeExamples": 0,
|
|
76106
76032
|
"complexity": "beginner",
|
|
76107
|
-
"readingTime": "
|
|
76108
|
-
"contentLength":
|
|
76033
|
+
"readingTime": "2 min",
|
|
76034
|
+
"contentLength": 2009,
|
|
76109
76035
|
"relatedPages": []
|
|
76110
76036
|
},
|
|
76111
76037
|
"searchIndex": {
|
|
76112
|
-
"fullText": "
|
|
76038
|
+
"fullText": "venafi tls protect datacenter credentials # venafi tls protect datacenter credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [venafi tls protect datacenter node](../../app-nodes/n8n-nodes-base.venafitlsprotectdatacenter/)\n\n## prerequisites\n\n- create a venafi [tls protect datacenter](https://venafi.com/) account.\n- set the expiration and refresh time for tokens. refer to [setting up token authentication](https://docs.venafi.com/docs/current/topnav/content/sdk/authsdk/t-sdka-setup-oauth.php) for more information.\n- create an [api integration](https://docs.venafi.com/docs/current/topnav/content/api-applicationintegration/c-apiappintegrations-about.php) in **api > integrations**. refer to [integrating other systems with venafi products](https://docs.venafi.com/docs/current/topnav/content/api-applicationintegration/t-apiappintegrations-creating.php) for detailed instructions.\n - take note of the client id for your integration.\n - choose the scopes needed for the operations you want to perform within n8n. refer to the scopes table in [integrating other systems with venafi products](https://docs.venafi.com/docs/current/topnav/content/api-applicationintegration/t-apiappintegrations-creating.php) for more details on available scopes.\n\n## supported authentication methods\n\n- api integration\n\n## related resources\n\nrefer to [venafi's api integration documentation](https://docs.venafi.com/docs/currentsdk/topnav/content/sdk/websdk/c-sdk-aboutthisguide.php) for more information about the service.\n\n## using api integration\n\nto configure this credential, you'll need:\n\n- a **domain**: enter your venafi tls protect datacenter domain.\n- a **client id**: enter the **client id** from your api integration. refer to the information and links in [prerequisites](#prerequisites) for more information on creating an api integration.\n- a **username**: enter your username.\n- a **password**: enter your password.\n- **allow self-signed certificates**: if turned on, the credential will allow self-signed certificates.\n venafi tls protect datacenter credentials",
|
|
76113
76039
|
"importantTerms": [
|
|
76114
|
-
"
|
|
76115
|
-
"
|
|
76116
|
-
"
|
|
76117
|
-
"
|
|
76040
|
+
"venafi",
|
|
76041
|
+
"docs",
|
|
76042
|
+
"integration",
|
|
76043
|
+
"protect",
|
|
76044
|
+
"datacenter",
|
|
76045
|
+
"https",
|
|
76046
|
+
"refer",
|
|
76047
|
+
"topnav",
|
|
76048
|
+
"content",
|
|
76118
76049
|
"your",
|
|
76119
76050
|
"credentials",
|
|
76051
|
+
"current",
|
|
76052
|
+
"more",
|
|
76053
|
+
"information",
|
|
76054
|
+
"enter",
|
|
76120
76055
|
"nodes",
|
|
76121
|
-
"
|
|
76122
|
-
"
|
|
76123
|
-
"
|
|
76056
|
+
"prerequisites",
|
|
76057
|
+
"applicationintegration",
|
|
76058
|
+
"apiappintegrations",
|
|
76059
|
+
"creating",
|
|
76060
|
+
"client",
|
|
76061
|
+
"scopes"
|
|
76124
76062
|
]
|
|
76125
76063
|
}
|
|
76126
76064
|
},
|
|
76127
76065
|
{
|
|
76128
76066
|
"id": "page-1009",
|
|
76129
|
-
"title": "
|
|
76130
|
-
"url": "https://docs.n8n.io/integrations/builtin/credentials/
|
|
76131
|
-
"urlPath": "integrations/builtin/credentials/
|
|
76067
|
+
"title": "Vercel AI Gateway credentials",
|
|
76068
|
+
"url": "https://docs.n8n.io/integrations/builtin/credentials/vercel/index.md",
|
|
76069
|
+
"urlPath": "integrations/builtin/credentials/vercel/index.md",
|
|
76132
76070
|
"category": "other",
|
|
76133
76071
|
"subcategory": null,
|
|
76134
76072
|
"nodeName": null,
|
|
76135
76073
|
"nodeType": null,
|
|
76136
76074
|
"content": {
|
|
76137
|
-
"markdown": "#
|
|
76138
|
-
"excerpt": "#
|
|
76075
|
+
"markdown": "# Vercel AI Gateway credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Chat Vercel AI Gateway](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatvercel/)\n\n## Prerequisites\n\nCreate a [Vercel](https://vercel.com/) account.\n\n## Supported authentication methods\n\n- API key\n- OIDC token\n\n## Related resources\n\nRefer to the [Vercel AI Gateway documentation](https://vercel.com/docs/ai-gateway) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**\n\nTo generate your API Key:\n\n1. [Login to Vercel](https://vercel.com/login) or [create an account](https://vercel.com/signup).\n1. Go to the Vercel dashboard and select the **AI Gateway** tab.\n1. Select **API keys** on the left side bar.\n1. Select **Add key** and proceed with **Create key** from the Dialog.\n1. Copy your key and add it as the **API Key** in n8n.\n\n## Using OIDC token\n\nTo configure this credential, you'll need:\n\n- An **OIDC token**\n\nTo generate your OIDC token:\n\n1. In local development, link your application to a Vercel project with the `vc link` command.\n1. Run the `vercel env pull` command to pull the environment variables from Vercel.\n1. Copy your token and add it as the **OIDC TOKEN** in n8n.\n",
|
|
76076
|
+
"excerpt": "# Vercel AI Gateway credentials You can use these credentials to authenticate the following nodes: - [Chat Vercel AI Gateway](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatvercel/) ## Prerequisites Create a [Vercel](https://vercel.com/) account. ## Supported authentication methods - API key - OIDC token ## Related resources Refer to the [Vercel AI Gateway documentation](https://vercel.com/docs/ai-gateway) for more information about the service. ## Using API key To configure t...",
|
|
76139
76077
|
"sections": [
|
|
76140
76078
|
{
|
|
76141
|
-
"title": "
|
|
76079
|
+
"title": "Vercel AI Gateway credentials",
|
|
76142
76080
|
"level": 1,
|
|
76143
|
-
"content": "You can use these credentials to authenticate the following nodes:\n\n- [
|
|
76081
|
+
"content": "You can use these credentials to authenticate the following nodes:\n\n- [Chat Vercel AI Gateway](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatvercel/)"
|
|
76144
76082
|
}
|
|
76145
76083
|
]
|
|
76146
76084
|
},
|
|
76147
76085
|
"metadata": {
|
|
76148
76086
|
"keywords": [
|
|
76149
|
-
"
|
|
76150
|
-
"
|
|
76151
|
-
"datacenter",
|
|
76087
|
+
"vercel",
|
|
76088
|
+
"gateway",
|
|
76152
76089
|
"credentials",
|
|
76153
76090
|
"prerequisites",
|
|
76154
76091
|
"supported",
|
|
@@ -76157,41 +76094,30 @@
|
|
|
76157
76094
|
"related",
|
|
76158
76095
|
"resources",
|
|
76159
76096
|
"using",
|
|
76160
|
-
"
|
|
76097
|
+
"oidc",
|
|
76098
|
+
"token"
|
|
76161
76099
|
],
|
|
76162
76100
|
"useCases": [],
|
|
76163
76101
|
"operations": [],
|
|
76164
76102
|
"codeExamples": 0,
|
|
76165
76103
|
"complexity": "beginner",
|
|
76166
|
-
"readingTime": "
|
|
76167
|
-
"contentLength":
|
|
76104
|
+
"readingTime": "1 min",
|
|
76105
|
+
"contentLength": 1265,
|
|
76168
76106
|
"relatedPages": []
|
|
76169
76107
|
},
|
|
76170
76108
|
"searchIndex": {
|
|
76171
|
-
"fullText": "
|
|
76109
|
+
"fullText": "vercel ai gateway credentials # vercel ai gateway credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [chat vercel ai gateway](../../cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatvercel/)\n\n## prerequisites\n\ncreate a [vercel](https://vercel.com/) account.\n\n## supported authentication methods\n\n- api key\n- oidc token\n\n## related resources\n\nrefer to the [vercel ai gateway documentation](https://vercel.com/docs/ai-gateway) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**\n\nto generate your api key:\n\n1. [login to vercel](https://vercel.com/login) or [create an account](https://vercel.com/signup).\n1. go to the vercel dashboard and select the **ai gateway** tab.\n1. select **api keys** on the left side bar.\n1. select **add key** and proceed with **create key** from the dialog.\n1. copy your key and add it as the **api key** in n8n.\n\n## using oidc token\n\nto configure this credential, you'll need:\n\n- an **oidc token**\n\nto generate your oidc token:\n\n1. in local development, link your application to a vercel project with the `vc link` command.\n1. run the `vercel env pull` command to pull the environment variables from vercel.\n1. copy your token and add it as the **oidc token** in n8n.\n vercel ai gateway credentials",
|
|
76172
76110
|
"importantTerms": [
|
|
76173
|
-
"
|
|
76174
|
-
"
|
|
76175
|
-
"
|
|
76176
|
-
"
|
|
76177
|
-
"datacenter",
|
|
76178
|
-
"https",
|
|
76179
|
-
"refer",
|
|
76180
|
-
"topnav",
|
|
76181
|
-
"content",
|
|
76111
|
+
"vercel",
|
|
76112
|
+
"gateway",
|
|
76113
|
+
"token",
|
|
76114
|
+
"oidc",
|
|
76182
76115
|
"your",
|
|
76183
76116
|
"credentials",
|
|
76184
|
-
"current",
|
|
76185
|
-
"more",
|
|
76186
|
-
"information",
|
|
76187
|
-
"enter",
|
|
76188
76117
|
"nodes",
|
|
76189
|
-
"
|
|
76190
|
-
"
|
|
76191
|
-
"
|
|
76192
|
-
"creating",
|
|
76193
|
-
"client",
|
|
76194
|
-
"scopes"
|
|
76118
|
+
"https",
|
|
76119
|
+
"create",
|
|
76120
|
+
"select"
|
|
76195
76121
|
]
|
|
76196
76122
|
}
|
|
76197
76123
|
},
|
|
@@ -94335,7 +94261,7 @@
|
|
|
94335
94261
|
"page-0212",
|
|
94336
94262
|
"page-0213",
|
|
94337
94263
|
"page-0219",
|
|
94338
|
-
"page-
|
|
94264
|
+
"page-0222",
|
|
94339
94265
|
"page-0553",
|
|
94340
94266
|
"page-0554",
|
|
94341
94267
|
"page-0555",
|
|
@@ -94396,7 +94322,6 @@
|
|
|
94396
94322
|
"page-0003",
|
|
94397
94323
|
"page-0013",
|
|
94398
94324
|
"page-0019",
|
|
94399
|
-
"page-0153",
|
|
94400
94325
|
"page-0206",
|
|
94401
94326
|
"page-0433",
|
|
94402
94327
|
"page-0885",
|
|
@@ -94421,7 +94346,7 @@
|
|
|
94421
94346
|
"page-0002",
|
|
94422
94347
|
"page-0003",
|
|
94423
94348
|
"page-0154",
|
|
94424
|
-
"page-
|
|
94349
|
+
"page-0222",
|
|
94425
94350
|
"page-0470",
|
|
94426
94351
|
"page-0490",
|
|
94427
94352
|
"page-0493",
|
|
@@ -94553,7 +94478,7 @@
|
|
|
94553
94478
|
"page-0164",
|
|
94554
94479
|
"page-0202",
|
|
94555
94480
|
"page-0206",
|
|
94556
|
-
"page-
|
|
94481
|
+
"page-0224",
|
|
94557
94482
|
"page-0782",
|
|
94558
94483
|
"page-0804",
|
|
94559
94484
|
"page-0806",
|
|
@@ -95388,7 +95313,6 @@
|
|
|
95388
95313
|
"page-0074",
|
|
95389
95314
|
"page-0086",
|
|
95390
95315
|
"page-0148",
|
|
95391
|
-
"page-0153",
|
|
95392
95316
|
"page-0162",
|
|
95393
95317
|
"page-0882",
|
|
95394
95318
|
"page-1255",
|
|
@@ -95464,7 +95388,7 @@
|
|
|
95464
95388
|
"page-0003",
|
|
95465
95389
|
"page-0154",
|
|
95466
95390
|
"page-0189",
|
|
95467
|
-
"page-
|
|
95391
|
+
"page-0222",
|
|
95468
95392
|
"page-0277",
|
|
95469
95393
|
"page-1215"
|
|
95470
95394
|
],
|
|
@@ -95472,7 +95396,7 @@
|
|
|
95472
95396
|
"page-0003",
|
|
95473
95397
|
"page-0154",
|
|
95474
95398
|
"page-0189",
|
|
95475
|
-
"page-
|
|
95399
|
+
"page-0222",
|
|
95476
95400
|
"page-1215"
|
|
95477
95401
|
],
|
|
95478
95402
|
"runner": [
|
|
@@ -95541,7 +95465,7 @@
|
|
|
95541
95465
|
"page-0146",
|
|
95542
95466
|
"page-0160",
|
|
95543
95467
|
"page-0219",
|
|
95544
|
-
"page-
|
|
95468
|
+
"page-0221",
|
|
95545
95469
|
"page-0229",
|
|
95546
95470
|
"page-0652",
|
|
95547
95471
|
"page-0694",
|
|
@@ -95926,7 +95850,7 @@
|
|
|
95926
95850
|
"restrict": [
|
|
95927
95851
|
"page-0003",
|
|
95928
95852
|
"page-0206",
|
|
95929
|
-
"page-
|
|
95853
|
+
"page-0224",
|
|
95930
95854
|
"page-0669"
|
|
95931
95855
|
],
|
|
95932
95856
|
"bare": [
|
|
@@ -95949,7 +95873,6 @@
|
|
|
95949
95873
|
],
|
|
95950
95874
|
"sqlite": [
|
|
95951
95875
|
"page-0003",
|
|
95952
|
-
"page-0153",
|
|
95953
95876
|
"page-0174",
|
|
95954
95877
|
"page-0206"
|
|
95955
95878
|
],
|
|
@@ -96132,7 +96055,7 @@
|
|
|
96132
96055
|
"page-0180",
|
|
96133
96056
|
"page-0206",
|
|
96134
96057
|
"page-0215",
|
|
96135
|
-
"page-
|
|
96058
|
+
"page-0222",
|
|
96136
96059
|
"page-0376",
|
|
96137
96060
|
"page-0708",
|
|
96138
96061
|
"page-0953",
|
|
@@ -96584,7 +96507,7 @@
|
|
|
96584
96507
|
"read": [
|
|
96585
96508
|
"page-0005",
|
|
96586
96509
|
"page-0206",
|
|
96587
|
-
"page-
|
|
96510
|
+
"page-0222",
|
|
96588
96511
|
"page-0503",
|
|
96589
96512
|
"page-0685",
|
|
96590
96513
|
"page-0688",
|
|
@@ -97697,7 +97620,7 @@
|
|
|
97697
97620
|
"page-0114",
|
|
97698
97621
|
"page-0129",
|
|
97699
97622
|
"page-0201",
|
|
97700
|
-
"page-
|
|
97623
|
+
"page-0222",
|
|
97701
97624
|
"page-0544",
|
|
97702
97625
|
"page-0545"
|
|
97703
97626
|
],
|
|
@@ -97955,7 +97878,7 @@
|
|
|
97955
97878
|
"page-0205",
|
|
97956
97879
|
"page-0206",
|
|
97957
97880
|
"page-0219",
|
|
97958
|
-
"page-
|
|
97881
|
+
"page-0222",
|
|
97959
97882
|
"page-0807",
|
|
97960
97883
|
"page-0821",
|
|
97961
97884
|
"page-0885",
|
|
@@ -98204,7 +98127,6 @@
|
|
|
98204
98127
|
"page-0048",
|
|
98205
98128
|
"page-0132",
|
|
98206
98129
|
"page-0145",
|
|
98207
|
-
"page-0153",
|
|
98208
98130
|
"page-0155",
|
|
98209
98131
|
"page-0158",
|
|
98210
98132
|
"page-0167",
|
|
@@ -98746,7 +98668,6 @@
|
|
|
98746
98668
|
"page-0043",
|
|
98747
98669
|
"page-0047",
|
|
98748
98670
|
"page-0048",
|
|
98749
|
-
"page-0153",
|
|
98750
98671
|
"page-0202",
|
|
98751
98672
|
"page-0205",
|
|
98752
98673
|
"page-0321",
|
|
@@ -99816,7 +99737,7 @@
|
|
|
99816
99737
|
"page-0135",
|
|
99817
99738
|
"page-0216",
|
|
99818
99739
|
"page-0220",
|
|
99819
|
-
"page-
|
|
99740
|
+
"page-0221",
|
|
99820
99741
|
"page-0228",
|
|
99821
99742
|
"page-0229",
|
|
99822
99743
|
"page-0239",
|
|
@@ -100362,7 +100283,7 @@
|
|
|
100362
100283
|
"page-0199",
|
|
100363
100284
|
"page-0203",
|
|
100364
100285
|
"page-0220",
|
|
100365
|
-
"page-
|
|
100286
|
+
"page-0221",
|
|
100366
100287
|
"page-0228",
|
|
100367
100288
|
"page-0229",
|
|
100368
100289
|
"page-0239",
|
|
@@ -101399,7 +101320,7 @@
|
|
|
101399
101320
|
"page-0170",
|
|
101400
101321
|
"page-0209",
|
|
101401
101322
|
"page-0217",
|
|
101402
|
-
"page-
|
|
101323
|
+
"page-0223",
|
|
101403
101324
|
"page-1164",
|
|
101404
101325
|
"page-1167",
|
|
101405
101326
|
"page-1207",
|
|
@@ -101450,7 +101371,7 @@
|
|
|
101450
101371
|
"page-0206",
|
|
101451
101372
|
"page-0210",
|
|
101452
101373
|
"page-0211",
|
|
101453
|
-
"page-
|
|
101374
|
+
"page-0222",
|
|
101454
101375
|
"page-0335",
|
|
101455
101376
|
"page-0466",
|
|
101456
101377
|
"page-0546",
|
|
@@ -102879,7 +102800,6 @@
|
|
|
102879
102800
|
"database": [
|
|
102880
102801
|
"page-0038",
|
|
102881
102802
|
"page-0148",
|
|
102882
|
-
"page-0153",
|
|
102883
102803
|
"page-0174",
|
|
102884
102804
|
"page-0202",
|
|
102885
102805
|
"page-0206",
|
|
@@ -102993,7 +102913,6 @@
|
|
|
102993
102913
|
"page-0043",
|
|
102994
102914
|
"page-0047",
|
|
102995
102915
|
"page-0048",
|
|
102996
|
-
"page-0153",
|
|
102997
102916
|
"page-0155",
|
|
102998
102917
|
"page-0167",
|
|
102999
102918
|
"page-0196",
|
|
@@ -103201,7 +103120,7 @@
|
|
|
103201
103120
|
"page-0994",
|
|
103202
103121
|
"page-0998",
|
|
103203
103122
|
"page-1001",
|
|
103204
|
-
"page-
|
|
103123
|
+
"page-1009",
|
|
103205
103124
|
"page-1010",
|
|
103206
103125
|
"page-1014",
|
|
103207
103126
|
"page-1018",
|
|
@@ -103397,7 +103316,7 @@
|
|
|
103397
103316
|
],
|
|
103398
103317
|
"public": [
|
|
103399
103318
|
"page-0045",
|
|
103400
|
-
"page-
|
|
103319
|
+
"page-0221",
|
|
103401
103320
|
"page-0908",
|
|
103402
103321
|
"page-1214",
|
|
103403
103322
|
"page-1215"
|
|
@@ -103405,7 +103324,7 @@
|
|
|
103405
103324
|
"rest": [
|
|
103406
103325
|
"page-0045",
|
|
103407
103326
|
"page-0151",
|
|
103408
|
-
"page-
|
|
103327
|
+
"page-0221"
|
|
103409
103328
|
],
|
|
103410
103329
|
"interaction": [
|
|
103411
103330
|
"page-0045"
|
|
@@ -103470,7 +103389,7 @@
|
|
|
103470
103389
|
],
|
|
103471
103390
|
"playground": [
|
|
103472
103391
|
"page-0049",
|
|
103473
|
-
"page-
|
|
103392
|
+
"page-0221"
|
|
103474
103393
|
],
|
|
103475
103394
|
"built": [
|
|
103476
103395
|
"page-0049",
|
|
@@ -103736,7 +103655,6 @@
|
|
|
103736
103655
|
"supported": [
|
|
103737
103656
|
"page-0053",
|
|
103738
103657
|
"page-0134",
|
|
103739
|
-
"page-0153",
|
|
103740
103658
|
"page-0237",
|
|
103741
103659
|
"page-0238",
|
|
103742
103660
|
"page-0239",
|
|
@@ -105310,7 +105228,7 @@
|
|
|
105310
105228
|
"page-0203",
|
|
105311
105229
|
"page-0206",
|
|
105312
105230
|
"page-0211",
|
|
105313
|
-
"page-
|
|
105231
|
+
"page-0224",
|
|
105314
105232
|
"page-0552",
|
|
105315
105233
|
"page-0556",
|
|
105316
105234
|
"page-0560",
|
|
@@ -106836,7 +106754,7 @@
|
|
|
106836
106754
|
"email": [
|
|
106837
106755
|
"page-0144",
|
|
106838
106756
|
"page-0201",
|
|
106839
|
-
"page-
|
|
106757
|
+
"page-0224",
|
|
106840
106758
|
"page-0659",
|
|
106841
106759
|
"page-0690",
|
|
106842
106760
|
"page-0871",
|
|
@@ -106993,7 +106911,6 @@
|
|
|
106993
106911
|
],
|
|
106994
106912
|
"shared": [
|
|
106995
106913
|
"page-0148",
|
|
106996
|
-
"page-0153",
|
|
106997
106914
|
"page-0513",
|
|
106998
106915
|
"page-0748",
|
|
106999
106916
|
"page-1256"
|
|
@@ -107060,68 +106977,6 @@
|
|
|
107060
106977
|
"hook": [
|
|
107061
106978
|
"page-0152"
|
|
107062
106979
|
],
|
|
107063
|
-
"databases": [
|
|
107064
|
-
"page-0153"
|
|
107065
|
-
],
|
|
107066
|
-
"type": [
|
|
107067
|
-
"page-0153",
|
|
107068
|
-
"page-0166",
|
|
107069
|
-
"page-0287",
|
|
107070
|
-
"page-0320",
|
|
107071
|
-
"page-0380",
|
|
107072
|
-
"page-0383",
|
|
107073
|
-
"page-0423",
|
|
107074
|
-
"page-0460",
|
|
107075
|
-
"page-0497",
|
|
107076
|
-
"page-0533",
|
|
107077
|
-
"page-0562",
|
|
107078
|
-
"page-0667",
|
|
107079
|
-
"page-0674",
|
|
107080
|
-
"page-0690",
|
|
107081
|
-
"page-0691",
|
|
107082
|
-
"page-0699",
|
|
107083
|
-
"page-0704",
|
|
107084
|
-
"page-0723",
|
|
107085
|
-
"page-0839",
|
|
107086
|
-
"page-0910",
|
|
107087
|
-
"page-0998",
|
|
107088
|
-
"page-1179",
|
|
107089
|
-
"page-1193",
|
|
107090
|
-
"page-1194",
|
|
107091
|
-
"page-1198"
|
|
107092
|
-
],
|
|
107093
|
-
"installation": [
|
|
107094
|
-
"page-0153",
|
|
107095
|
-
"page-0194",
|
|
107096
|
-
"page-1161",
|
|
107097
|
-
"page-1162"
|
|
107098
|
-
],
|
|
107099
|
-
"postgresdb": [
|
|
107100
|
-
"page-0153"
|
|
107101
|
-
],
|
|
107102
|
-
"optional:": [
|
|
107103
|
-
"page-0153",
|
|
107104
|
-
"page-0198",
|
|
107105
|
-
"page-0199",
|
|
107106
|
-
"page-0201",
|
|
107107
|
-
"page-0203",
|
|
107108
|
-
"page-0807",
|
|
107109
|
-
"page-1217"
|
|
107110
|
-
],
|
|
107111
|
-
"required": [
|
|
107112
|
-
"page-0153",
|
|
107113
|
-
"page-0206",
|
|
107114
|
-
"page-0445",
|
|
107115
|
-
"page-0744",
|
|
107116
|
-
"page-0840",
|
|
107117
|
-
"page-0885",
|
|
107118
|
-
"page-0910",
|
|
107119
|
-
"page-0973",
|
|
107120
|
-
"page-0982",
|
|
107121
|
-
"page-1115",
|
|
107122
|
-
"page-1176",
|
|
107123
|
-
"page-1194"
|
|
107124
|
-
],
|
|
107125
106980
|
"modes": [
|
|
107126
106981
|
"page-0154",
|
|
107127
106982
|
"page-0681",
|
|
@@ -107188,7 +107043,7 @@
|
|
|
107188
107043
|
],
|
|
107189
107044
|
"users": [
|
|
107190
107045
|
"page-0155",
|
|
107191
|
-
"page-
|
|
107046
|
+
"page-0224",
|
|
107192
107047
|
"page-0498",
|
|
107193
107048
|
"page-0554",
|
|
107194
107049
|
"page-0885",
|
|
@@ -107373,7 +107228,7 @@
|
|
|
107373
107228
|
],
|
|
107374
107229
|
"oidc": [
|
|
107375
107230
|
"page-0164",
|
|
107376
|
-
"page-
|
|
107231
|
+
"page-1009",
|
|
107377
107232
|
"page-1215",
|
|
107378
107233
|
"page-1238",
|
|
107379
107234
|
"page-1239"
|
|
@@ -107425,7 +107280,7 @@
|
|
|
107425
107280
|
"page-0165",
|
|
107426
107281
|
"page-0194",
|
|
107427
107282
|
"page-0206",
|
|
107428
|
-
"page-
|
|
107283
|
+
"page-0222",
|
|
107429
107284
|
"page-0231",
|
|
107430
107285
|
"page-0519",
|
|
107431
107286
|
"page-0526",
|
|
@@ -107475,6 +107330,32 @@
|
|
|
107475
107330
|
"page-0219",
|
|
107476
107331
|
"page-1215"
|
|
107477
107332
|
],
|
|
107333
|
+
"type": [
|
|
107334
|
+
"page-0166",
|
|
107335
|
+
"page-0287",
|
|
107336
|
+
"page-0320",
|
|
107337
|
+
"page-0380",
|
|
107338
|
+
"page-0383",
|
|
107339
|
+
"page-0423",
|
|
107340
|
+
"page-0460",
|
|
107341
|
+
"page-0497",
|
|
107342
|
+
"page-0533",
|
|
107343
|
+
"page-0562",
|
|
107344
|
+
"page-0667",
|
|
107345
|
+
"page-0674",
|
|
107346
|
+
"page-0690",
|
|
107347
|
+
"page-0691",
|
|
107348
|
+
"page-0699",
|
|
107349
|
+
"page-0704",
|
|
107350
|
+
"page-0723",
|
|
107351
|
+
"page-0839",
|
|
107352
|
+
"page-0910",
|
|
107353
|
+
"page-0998",
|
|
107354
|
+
"page-1179",
|
|
107355
|
+
"page-1193",
|
|
107356
|
+
"page-1194",
|
|
107357
|
+
"page-1198"
|
|
107358
|
+
],
|
|
107478
107359
|
"gauge": [
|
|
107479
107360
|
"page-0166"
|
|
107480
107361
|
],
|
|
@@ -107582,6 +107463,11 @@
|
|
|
107582
107463
|
"smtp,": [
|
|
107583
107464
|
"page-0191"
|
|
107584
107465
|
],
|
|
107466
|
+
"installation": [
|
|
107467
|
+
"page-0194",
|
|
107468
|
+
"page-1161",
|
|
107469
|
+
"page-1162"
|
|
107470
|
+
],
|
|
107585
107471
|
"starting": [
|
|
107586
107472
|
"page-0194"
|
|
107587
107473
|
],
|
|
@@ -107815,6 +107701,14 @@
|
|
|
107815
107701
|
"page-0203",
|
|
107816
107702
|
"page-0554"
|
|
107817
107703
|
],
|
|
107704
|
+
"optional:": [
|
|
107705
|
+
"page-0198",
|
|
107706
|
+
"page-0199",
|
|
107707
|
+
"page-0201",
|
|
107708
|
+
"page-0203",
|
|
107709
|
+
"page-0807",
|
|
107710
|
+
"page-1217"
|
|
107711
|
+
],
|
|
107818
107712
|
"deployments": [
|
|
107819
107713
|
"page-0198",
|
|
107820
107714
|
"page-0199",
|
|
@@ -108079,6 +107973,19 @@
|
|
|
108079
107973
|
"libvirt": [
|
|
108080
107974
|
"page-0206"
|
|
108081
107975
|
],
|
|
107976
|
+
"required": [
|
|
107977
|
+
"page-0206",
|
|
107978
|
+
"page-0445",
|
|
107979
|
+
"page-0744",
|
|
107980
|
+
"page-0840",
|
|
107981
|
+
"page-0885",
|
|
107982
|
+
"page-0910",
|
|
107983
|
+
"page-0973",
|
|
107984
|
+
"page-0982",
|
|
107985
|
+
"page-1115",
|
|
107986
|
+
"page-1176",
|
|
107987
|
+
"page-1194"
|
|
107988
|
+
],
|
|
108082
107989
|
"groups": [
|
|
108083
107990
|
"page-0206",
|
|
108084
107991
|
"page-0524"
|
|
@@ -108520,7 +108427,7 @@
|
|
|
108520
108427
|
],
|
|
108521
108428
|
"filesystem": [
|
|
108522
108429
|
"page-0212",
|
|
108523
|
-
"page-
|
|
108430
|
+
"page-0222"
|
|
108524
108431
|
],
|
|
108525
108432
|
"pruning": [
|
|
108526
108433
|
"page-0212",
|
|
@@ -108650,25 +108557,25 @@
|
|
|
108650
108557
|
"page-0228"
|
|
108651
108558
|
],
|
|
108652
108559
|
"hardening": [
|
|
108653
|
-
"page-
|
|
108560
|
+
"page-0222"
|
|
108654
108561
|
],
|
|
108655
108562
|
"sidecars": [
|
|
108656
|
-
"page-
|
|
108563
|
+
"page-0222"
|
|
108657
108564
|
],
|
|
108658
108565
|
"distroless": [
|
|
108659
|
-
"page-
|
|
108566
|
+
"page-0222"
|
|
108660
108567
|
],
|
|
108661
108568
|
"nobody": [
|
|
108662
|
-
"page-
|
|
108569
|
+
"page-0222"
|
|
108663
108570
|
],
|
|
108664
108571
|
"securing": [
|
|
108665
|
-
"page-
|
|
108572
|
+
"page-0223"
|
|
108666
108573
|
],
|
|
108667
108574
|
"registration": [
|
|
108668
|
-
"page-
|
|
108575
|
+
"page-0224"
|
|
108669
108576
|
],
|
|
108670
108577
|
"verified": [
|
|
108671
|
-
"page-
|
|
108578
|
+
"page-0224",
|
|
108672
108579
|
"page-0509",
|
|
108673
108580
|
"page-1037",
|
|
108674
108581
|
"page-1038",
|
|
@@ -110412,7 +110319,7 @@
|
|
|
110412
110319
|
"page-0473",
|
|
110413
110320
|
"page-0474",
|
|
110414
110321
|
"page-1007",
|
|
110415
|
-
"page-
|
|
110322
|
+
"page-1008",
|
|
110416
110323
|
"page-1126",
|
|
110417
110324
|
"page-1214"
|
|
110418
110325
|
],
|
|
@@ -110420,13 +110327,13 @@
|
|
|
110420
110327
|
"page-0473",
|
|
110421
110328
|
"page-0474",
|
|
110422
110329
|
"page-1007",
|
|
110423
|
-
"page-
|
|
110330
|
+
"page-1008",
|
|
110424
110331
|
"page-1126",
|
|
110425
110332
|
"page-1214"
|
|
110426
110333
|
],
|
|
110427
110334
|
"datacenter": [
|
|
110428
110335
|
"page-0474",
|
|
110429
|
-
"page-
|
|
110336
|
+
"page-1008"
|
|
110430
110337
|
],
|
|
110431
110338
|
"vero": [
|
|
110432
110339
|
"page-0475",
|
|
@@ -111552,11 +111459,11 @@
|
|
|
111552
111459
|
],
|
|
111553
111460
|
"vercel": [
|
|
111554
111461
|
"page-0603",
|
|
111555
|
-
"page-
|
|
111462
|
+
"page-1009"
|
|
111556
111463
|
],
|
|
111557
111464
|
"gateway": [
|
|
111558
111465
|
"page-0603",
|
|
111559
|
-
"page-
|
|
111466
|
+
"page-1009"
|
|
111560
111467
|
],
|
|
111561
111468
|
"grok": [
|
|
111562
111469
|
"page-0604"
|
|
@@ -112533,7 +112440,7 @@
|
|
|
112533
112440
|
"integration": [
|
|
112534
112441
|
"page-0885",
|
|
112535
112442
|
"page-0908",
|
|
112536
|
-
"page-
|
|
112443
|
+
"page-1008"
|
|
112537
112444
|
],
|
|
112538
112445
|
"receipt": [
|
|
112539
112446
|
"page-0888"
|
|
@@ -114426,7 +114333,6 @@
|
|
|
114426
114333
|
"page-0150",
|
|
114427
114334
|
"page-0151",
|
|
114428
114335
|
"page-0152",
|
|
114429
|
-
"page-0153",
|
|
114430
114336
|
"page-0154",
|
|
114431
114337
|
"page-0155",
|
|
114432
114338
|
"page-0156",
|