| 12345678910111213 |
- module.exports = {
- type: 'jccytech',
- cookie: {
- path: '/',
- httpOnly: true,
- domain: '.jccytech.cn',
- secure: true, //behind https nginx
- maxAge: 1000 * 3600 * 24 * 3, // 3 day.
- },
- mongodbUrl: 'mongodb://coloring:coloring123.@localhost:62701/artsite?authSource=admin',
- host: 'http://color.jccytech.cn',
- resHost: 'http://color.jccytech.cn',
- }
|