thinkjs/template/config/session.es

20 lines
290 B
JavaScript

'use strict';
/**
* session configs
*/
export default {
name: 'thinkjs',
type: 'file',
secret: '<SECRET>',
timeout: 24 * 3600,
cookie: { // cookie options
length: 32,
httponly: true
},
adapter: {
file: {
path: think.RUNTIME_PATH + '/session',
}
}
};