production.js 311 B

12345678910111213
  1. module.exports = {
  2. type: 'production',
  3. cookie: {
  4. path: '/',
  5. httpOnly: true,
  6. domain: '.pcoloring.com',
  7. secure: true,
  8. maxAge: 1000 * 3600 * 24 * 3, //3 days.
  9. },
  10. mongodbUrl: 'mongodb://localhost:27017/artsite',
  11. host: 'https://art.pcoloring.com',
  12. resHost: 'https://pcoloring.com',
  13. }