| 1234567891011121314 |
- module.exports = {
- type: 'production',
- cookie: {
- path: '/',
- httpOnly: true,
- domain: '.pcoloring.com',
- secure: true,
- maxAge: 1000 * 3600 * 24 * 3, //3 days.
- },
- mongodbUrl: 'mongodb://localhost:27017/artsite',
- host: 'https://art.pcoloring.com',
- resHost: 'https://pcoloring.com',
- cdnHost: 'https://d2mb6s2cy1zg97.cloudfront.net',
- }
|