| 12345678910111213 |
- 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',
- }
|