-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a76736f
commit cafe113
Showing
7 changed files
with
34 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,40 +8,32 @@ | |
"success_url": "/", | ||
"stack": "container", | ||
"env": { | ||
"N8N_BASIC_AUTH_ACTIVE": { | ||
"description": "Protect n8n setup with basic authentication.", | ||
"value": "true" | ||
}, | ||
"GENERIC_TIMEZONE": { | ||
"description": "Time Zone to use with Heroku. You can find the name of your timezone here: https://momentjs.com/timezone/", | ||
"value": "Europe/Berlin" | ||
}, | ||
"N8N_BASIC_AUTH_USER": { | ||
"description": "Basic Authentication User for n8n", | ||
"value": "user" | ||
}, | ||
"N8N_BASIC_AUTH_PASSWORD": { | ||
"description": "Basic Authentication Password to secure n8n.", | ||
"value": "pass" | ||
}, | ||
"N8N_ENCRYPTION_KEY": { | ||
"description": "This is to set the n8n encryption key to a static value, so that heroku doesnt override it, causing AUTH to fail", | ||
"value": "MdRRn2jiZuVeh5tI77A6" | ||
"value": "change-me-to-something-else" | ||
}, | ||
"PGSSLMODE": { | ||
"description": "Heroku made a change so SSL is required to connect to Postgres", | ||
"value": "require" | ||
"value": "no-verify" | ||
}, | ||
"DB_POSTGRESDB_SSL_ENABLED": { | ||
"description": "Introduced since [email protected] to connect to Postgres with SSL.", | ||
"value": "true" | ||
}, | ||
"NODE_TLS_REJECT_UNAUTHORIZED": { | ||
"description": "Because Heroku SSL is self signed, SSL fails if this is not set to 0", | ||
"value": 0 | ||
"description": "Heroku SSL is self signed, SSL fails if this is not set to 0", | ||
"value": "0" | ||
}, | ||
"WEBHOOK_URL": { | ||
"description": "Your app could be published to any domain, without specifying n8n will think that it's hosted on localhost (and it could break some scenarions ", | ||
"value": "https://<appname>.herokuapp.com" | ||
}, | ||
"EXECUTIONS_MODE": { | ||
"description": "This is to set the n8n executions mode to queue mode, recommended to be used with Postgres or MySQL", | ||
"description": "Supports: regular, queue. Queue Mode enables Worker Dyno to process events. If you do not plan on using worker dyno, set worker dyno count to 0 and set execution mode it to regular.", | ||
"value": "queue" | ||
} | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters