production.js 348 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://coloring:coloring123.@localhost:62701/artsite?authSource=admin',
  11. host: 'http://art.pcoloring.com',
  12. resHost: 'http://pcoloring.com',
  13. }