Make it possible to disable the UI

This commit is contained in:
Jan Oberhauser
2021-12-24 07:59:14 +01:00
parent 1e42effc3a
commit 48f0f71f95
2 changed files with 34 additions and 26 deletions

View File

@@ -507,6 +507,12 @@ const config = convict({
env: 'N8N_ENDPOINT_WEBHOOK_TEST',
doc: 'Path for test-webhook endpoint',
},
disableUi: {
format: Boolean,
default: false,
env: 'N8N_DISABLE_UI',
doc: 'Disable N8N UI (Frontend).',
},
disableProductionWebhooksOnMainProcess: {
format: Boolean,
default: false,