From f93a21dc3a0e8395963c19e5b450abc1e3fef91e Mon Sep 17 00:00:00 2001 From: Phil Date: Mon, 25 Nov 2024 10:36:46 -0700 Subject: [PATCH] add smtp info to heyforms --- roles/docker/templates/heyform-compose.yml.j2 | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/roles/docker/templates/heyform-compose.yml.j2 b/roles/docker/templates/heyform-compose.yml.j2 index 2ab4d73..67005e1 100644 --- a/roles/docker/templates/heyform-compose.yml.j2 +++ b/roles/docker/templates/heyform-compose.yml.j2 @@ -9,12 +9,18 @@ services: - mongo - keydb environment: - APP_HOMEPAGE_URL: http://forms.nerder.land - SESSION_KEY: {{ heyform_session_key }} - FORM_ENCRYPTION_KEY: {{ heyform_encryption_key }} - MONGO_URI: 'mongodb://mongo:27017/heyform' - REDIS_HOST: keydb - REDIS_PORT: 6379 + - APP_HOMEPAGE_URL=http://forms.nerder.land + - SESSION_KEY={{ heyform_session_key }} + - FORM_ENCRYPTION_KEY={{ heyform_encryption_key }} + - MONGO_URI='mongodb://mongo:27017/heyform' + - REDIS_HOST=keydb + - REDIS_PORT=6379 + - SMTP_FROM=nerderland@updates.thesatelliteoflove.com + - SMTP_HOST=smtp.resend.com + - SMTP_PORT=465 + - SMTP_USER=resend + - SMTP_PASSWORD={{ resend_key }} + - SMTP_SECURE=true mongo: image: percona/percona-server-mongodb:4.4