43 lines
1.0 KiB
TypeScript
43 lines
1.0 KiB
TypeScript
export default () => ({
|
|
email: {
|
|
config: {
|
|
provider: "nodemailer",
|
|
providerOptions: {
|
|
host: "mail.harmonychoral.com",
|
|
port: 465,
|
|
auth: {
|
|
user: "admin@harmonychoral.com",
|
|
pass: "Apslxnap12bn23",
|
|
},
|
|
// ... any custom nodemailer options
|
|
},
|
|
settings: {
|
|
defaultFrom: "admin@harmonychoral.com",
|
|
defaultReplyTo: "admin@harmonychoral.com",
|
|
},
|
|
},
|
|
},
|
|
upload: {
|
|
config: {
|
|
provider: "aws-s3",
|
|
providerOptions: {
|
|
//baseUrl: "http://192.168.0.211:9000/harmony",
|
|
baseUrl: "http://beyonder.synology.me:9000/harmony",
|
|
s3Options: {
|
|
credentials: {
|
|
accessKeyId: "admin",
|
|
secretAccessKey: "Apslxnap12bn23",
|
|
},
|
|
//endpoint: "http://192.168.0.211:9000",
|
|
endpoint: "http://beyonder.synology.me:9000",
|
|
region: "eu-west-3",
|
|
forcePathStyle: true,
|
|
params: {
|
|
Bucket: "harmony",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|