config.default.js 165 B

12345678910
  1. 'use strict';
  2. exports.session = {
  3. maxAge: 24 * 3600 * 1000, // ms
  4. key: 'EGG_SESS',
  5. httpOnly: true,
  6. encrypt: true,
  7. // sameSite: null,
  8. logValue: true,
  9. };