mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Moved files to config folders, and updated pm2 command
This commit is contained in:
7
server/config/cert_config.example.js
Normal file
7
server/config/cert_config.example.js
Normal file
@@ -0,0 +1,7 @@
|
||||
var cert = {
|
||||
privateKey: 'XX',
|
||||
certificate: 'XX',
|
||||
ca: 'XX'
|
||||
}
|
||||
|
||||
module.exports = cert;
|
||||
15
server/config/mailconfig.example.js
Normal file
15
server/config/mailconfig.example.js
Normal file
@@ -0,0 +1,15 @@
|
||||
var mail_config = {
|
||||
port: 587,
|
||||
host: 'smtp.example.com',
|
||||
auth: {
|
||||
user: 'ex@amp.le',
|
||||
pass: 'example'
|
||||
},
|
||||
secure: true,
|
||||
authMethod: 'PLAIN',
|
||||
tls: {
|
||||
ciphers:'SSLv3'
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = mail_config;
|
||||
5
server/config/mongo_config.example.js
Normal file
5
server/config/mongo_config.example.js
Normal file
@@ -0,0 +1,5 @@
|
||||
var mongo_config = {
|
||||
config: 'mydb'
|
||||
};
|
||||
|
||||
module.exports = mongo_config;
|
||||
Reference in New Issue
Block a user