{
        "generic": {
                "timezone": "America/Chicago"
        },
        "security": {
                "basicAuth": {
                        "active": true,
                        "user": "admin",
                        "password": "password"
                },
                "protocol": {
                        "format": ["http", "https"],
                        "default": "https",
                        "env": "N8N_PROTOCOL",
                        "doc": "HTTP Protocol via which n8n can be reached"
                },
                "ssl_key": {
                        "format": "String",
                        "default": "/home/node/.n8n/certs/key.pem",
                        "env": "N8N_SSL_KEY",
                        "doc": "SSL Key for HTTPS Protocol"
                },
                "ssl_cert": {
                        "format": "String",
                        "default": "/home/node/.n8n/certs/cert.pem",
                        "env": "N8N_SSL_CERT",
                        "doc": "SSL Cert for HTTPS Protocol"
                }
        },
	"encryptionKey": "kY8vQ2mNpX7wR4tZ1aB6cD9eF3gH5jL0",

	"host": "0.0.0.0",
	"port": 5678,
	"protocol": "https",
	"editorBaseUrl": "http://47.251.87.199",

	"database": {
		"type": "postgresdb",
		"tablePrefix": "n8n_",
		"postgresdb": {
			"host": "127.0.0.1",
			"port": 5432,
			"database": "n8n",
			"user": "n8n",
			"password": "change-me",
			"schema": "public",
			"ssl": {
				"enabled": false
			}
		}
	},

	"executions": {
		"mode": "queue",
		"timeout": 3600,
		"maxTimeout": 7200,
		"saveDataOnError": "all",
		"saveDataOnSuccess": "none",
		"saveDataManualExecutions": true,
		"pruneData": true,
		"pruneDataMaxAge": 336
	},

	"queue": {
		"health": { "active": true },
		"bull": {
			"redis": {
				"host": "127.0.0.1",
				"port": 6379,
				"db": 0,
				"password": ""
			}
		}
	},

	"endpoints": {
		"rest": "rest",
		"webhook": "webhook",
		"webhookTest": "webhook-test",
		"webhookWaiting": "webhook-waiting",
		"metrics": {
			"enable": true,
			"prefix": "n8n_"
		}
	},

	"nodes": {
		"exclude": ["n8n-nodes-base.executeCommand"]
	},

	"security": {
		"audit": {
			"daysAbandonedWorkflow": 90
		}
	},

	"diagnostics": {
		"enabled": false
	},

	"versionNotifications": {
		"enabled": false
	}
}

