From d130ff9939b54114a840cfa52a42c144bb3a6209 Mon Sep 17 00:00:00 2001 From: Kenneth Belitzky Date: Wed, 25 Jun 2025 13:31:11 +0000 Subject: [PATCH 1/2] Fix formatting issues in n8n configuration and update .gitignore --- struct_module/contribs/project/n8n.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/struct_module/contribs/project/n8n.yaml b/struct_module/contribs/project/n8n.yaml index 7c6941c..7b8d74d 100644 --- a/struct_module/contribs/project/n8n.yaml +++ b/struct_module/contribs/project/n8n.yaml @@ -1,4 +1,8 @@ files: + - .gitignore: + content: | + # Ignore env files + .env - .env: content: | # DOMAIN_NAME and SUBDOMAIN together determine where n8n will be reachable from @@ -8,14 +12,14 @@ files: # The subdomain to serve from SUBDOMAIN={{@ n8n_subdomain @}} - # The above example serve n8n at: https://n8n.{{@ n8n_domain_name @}}}} + # The above example serve n8n at: https://n8n.{{@ n8n_domain_name @}} # Optional timezone to set which gets used by Cron and other scheduling nodes # New York is the default value if not set GENERIC_TIMEZONE={{@ n8n_generic_timezone @}} # The email address to use for the TLS/SSL certificate creation - SSL_EMAIL=user@{{@ n8n_ssl_email @}}}} + SSL_EMAIL={{@ n8n_ssl_email @}} - local-files/.gitkeep: content: | # Keep this file to ensure the local-files directory is included in version control From f3962eb174f8916749ab0f2e7fa1d9edde0dfc7b Mon Sep 17 00:00:00 2001 From: Kenneth Belitzky Date: Wed, 25 Jun 2025 13:32:15 +0000 Subject: [PATCH 2/2] Fix subdomain example in n8n configuration --- struct_module/contribs/project/n8n.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/struct_module/contribs/project/n8n.yaml b/struct_module/contribs/project/n8n.yaml index 7b8d74d..633de23 100644 --- a/struct_module/contribs/project/n8n.yaml +++ b/struct_module/contribs/project/n8n.yaml @@ -12,7 +12,7 @@ files: # The subdomain to serve from SUBDOMAIN={{@ n8n_subdomain @}} - # The above example serve n8n at: https://n8n.{{@ n8n_domain_name @}} + # The above example serve n8n at: https://{{@ n8n_subdomain @}}.{{@ n8n_domain_name @}} # Optional timezone to set which gets used by Cron and other scheduling nodes # New York is the default value if not set