Files
harmony-back/config/env/production/plugins.ts
T
admin 6034c4f07b
Build release Docker image / Build Docker Images (push) Failing after 10m38s
Use zeptomail in prod
2026-05-04 09:43:59 +02:00

44 lines
1.2 KiB
TypeScript

export default () => ({
email: {
config: {
provider: "nodemailer",
providerOptions: {
host: "smtp.zeptomail.eu",
port: 587,
auth: {
user: "emailapikey",
pass: "yA6KbHsJ4lrywWtTFUc+0pSC94lm/aE/2nzks3i2fpZ1LYXp3qE71RBvd4O4c2CLjdfT5a9UbIkVJoCwvIpbfpczPIBXJpTGTuv4P2uV48xh8ciEYNYjhJivALIWFqVOeBsnDyo4QfEjWA==",
},
debug: true,
logger: true,
},
settings: {
defaultFrom: "ChoralSync <noreply@choralsync.com>",
defaultReplyTo: "contact@choralsync.com",
},
},
},
upload: {
config: {
provider: "aws-s3",
providerOptions: {
//baseUrl: "http://192.168.0.211:9000/harmony",
baseUrl: "https://container.harmonylab.ovh/harmony",
s3Options: {
credentials: {
accessKeyId: "admin",
secretAccessKey: "Apslxnap12bn23",
},
//endpoint: "http://192.168.0.211:9000",
endpoint: "https://container.harmonylab.ovh",
region: "eu-west-3",
forcePathStyle: true,
params: {
Bucket: "harmony",
},
},
},
},
},
});