1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/server/config/session.js

39 lines
1,012 B
JavaScript
Raw Normal View History

2019-08-31 04:07:25 +05:00
/**
* Session Configuration
* (sails.config.session)
*
* Use the settings below to configure session integration in your app.
* (for additional recommended settings, see `config/env/production.js`)
*
* For all available options, see:
* https://sailsjs.com/config/session
*/
module.exports.session = {
/**
*
* Session secret is automatically generated when your new app is created
* Replace at your own risk in production-- you will invalidate the cookies
* of your users, forcing them to log in again.
*
*/
2019-08-31 04:07:25 +05:00
2020-08-20 15:35:46 +05:00
secret: process.env.SECRET_KEY,
2019-08-31 04:07:25 +05:00
/**
*
* Customize when built-in session support will be skipped.
*
* (Useful for performance tuning; particularly to avoid wasting cycles on
* session management when responding to simple requests for static assets,
* like images or stylesheets.)
*
* https://sailsjs.com/config/session
*
*/
2019-08-31 04:07:25 +05:00
// isSessionDisabled: function (req){
// return !!req.path.match(req._sails.LOOKS_LIKE_ASSET_RX);
// },
};