From 76eacceadf9863cee2c8ae3230a62e6de536bb92 Mon Sep 17 00:00:00 2001 From: Toki <148911459+tokifyi@users.noreply.github.com> Date: Fri, 10 Oct 2025 16:51:08 -0700 Subject: [PATCH 1/2] Update n8n blog post: replace image with YouTube video and fix formatting --- blog/2025-10-10-n8n-aws-deployment.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/blog/2025-10-10-n8n-aws-deployment.md b/blog/2025-10-10-n8n-aws-deployment.md index 54d7084dd..65e11eef8 100644 --- a/blog/2025-10-10-n8n-aws-deployment.md +++ b/blog/2025-10-10-n8n-aws-deployment.md @@ -7,7 +7,7 @@ author: Defang Team date: 2025-10-10 --- -![n8n on AWS](/img/n8n-aws/n8n-aws.png) + ## Introduction @@ -42,6 +42,9 @@ Clone the n8n sample to your directory: ```bash defang new n8n cd n8n +``` + +Once you choose the n8n sample, it'll create the n8n sample for you. ## Step 3: Setup Defang for AWS @@ -67,15 +70,15 @@ You can easily set this to a random string using `defang config set N8N_ENCRYPTI Set to true to enable SSL. Set to false to disable SSL. -That be stated it recommend that deploy your N8N instance with SSL enable so it would be a managed version of Postgres. +It is recommended that you deploy your N8N instance with SSL enabled so it would be a managed version of Postgres. Please enable SSL by using `defang config set DB_POSTGRESDB_SSL_ENABLED=true -Paws` **DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED** -Set to true to reject unauthorized certificates. Set to false to accept unauthorized certificates. Counterintuitive, but leave this as true to disable SSL. +Set to true to reject unauthorized certificates. Set to false to accept unauthorized certificates. Counterintuitive, but leave this as false to allow managed Postgres to work. -That be stated it recommend that deploy your N8N instance accept unauthorized certificates it would allow managed version of Postgres to work. Please accept unauthorized certificates by using `defang config set DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED=false -Paws` +It is recommended that you deploy your N8N instance to accept unauthorized certificates so it would allow managed version of Postgres to work. Please accept unauthorized certificates by using `defang config set DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED=false -Paws` ## Step 5: Deploy with Defang @@ -111,7 +114,7 @@ After logging in: 1. Click on "Create Workflow" to start building your automation 2. Add nodes by clicking the "+" button -3. Connect different services and applications +3. Connect various applications and services 4. Test your workflow using the "Execute Workflow" button 5. Activate your workflow when ready From f752673602b34710e14a86ff4d87204dd6440e5d Mon Sep 17 00:00:00 2001 From: Toki <148911459+tokifyi@users.noreply.github.com> Date: Fri, 10 Oct 2025 17:11:30 -0700 Subject: [PATCH 2/2] Fix redundant text in n8n blog post - clarify defang new command --- blog/2025-10-10-n8n-aws-deployment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog/2025-10-10-n8n-aws-deployment.md b/blog/2025-10-10-n8n-aws-deployment.md index 65e11eef8..606e0b2dc 100644 --- a/blog/2025-10-10-n8n-aws-deployment.md +++ b/blog/2025-10-10-n8n-aws-deployment.md @@ -37,14 +37,14 @@ defang version ## Step 2: Clone the n8n Sample on Defang -Clone the n8n sample to your directory: +Create a new directory for your n8n deployment: ```bash defang new n8n cd n8n ``` -Once you choose the n8n sample, it'll create the n8n sample for you. +Once you choose the n8n sample, it'll clone the n8n sample for you. ## Step 3: Setup Defang for AWS