tellform/config/env/secure.js

61 lines
1.7 KiB
JavaScript
Raw Permalink Normal View History

2015-06-29 22:51:29 +00:00
'use strict';
module.exports = {
2015-07-28 22:29:07 +00:00
baseUrl: 'https://forms.polydaic.com',
2015-06-29 22:51:29 +00:00
port: 8443,
db: {
2017-10-11 05:07:13 +00:00
uri: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || process.env.MONGODB_URI || 'mongodb://127.0.0.1/mean',
2015-06-29 22:51:29 +00:00
options: {
user: '',
pass: ''
}
},
log: {
// Can specify one of 'combined', 'common', 'dev', 'short', 'tiny'
format: 'combined',
// Stream defaults to process.stdout
// Uncomment to enable logging to a log on the file system
options: {
stream: 'access.log'
}
},
2015-08-07 21:02:44 +00:00
sessionCookie: {
path: '/',
httpOnly: false,
// If secure is set to true then it will cause the cookie to be set
// only when SSL-enabled (HTTPS) is used, and otherwise it won't
// set a cookie. 'true' is recommended yet it requires the above
// mentioned pre-requisite.
secure: true,
// Only set the maxAge to null if the cookie shouldn't be expired
// at all. The cookie will expunge when the browser is closed.
2015-08-11 20:32:27 +00:00
maxAge: 7200,
2015-08-07 21:02:44 +00:00
// To set the cookie in a specific domain uncomment the following
// setting:
domain: process.env.BASE_URL || 'localhost:3000'
2015-08-07 21:02:44 +00:00
},
2015-06-29 22:51:29 +00:00
assets: {
css: 'public/dist/application.min.css',
js: 'public/dist/application.min.js'
},
mailer: {
2015-07-27 20:33:43 +00:00
from: process.env.MAILER_FROM || '',
options: process.env.MAILER_SMTP_HOST ? { //Uses custom SMTP if MAILER_SMTP_HOST is set
host: process.env.MAILER_SMTP_HOST || '',
port: process.env.MAILER_SMTP_PORT || 587,
secure: (process.env.MAILER_SMTP_SECURE === 'TRUE'),
auth: {
user: process.env.MAILER_EMAIL_ID || '',
pass: process.env.MAILER_PASSWORD || ''
}
} : {
2015-07-27 20:33:43 +00:00
service: process.env.MAILER_SERVICE_PROVIDER || '',
2015-06-29 22:51:29 +00:00
auth: {
2015-07-27 20:33:43 +00:00
user: process.env.MAILER_EMAIL_ID || '',
pass: process.env.MAILER_PASSWORD || ''
2015-06-29 22:51:29 +00:00
}
}
}
};