mirror of
https://github.com/plankanban/planka.git
synced 2025-07-24 07:39:44 +02:00
Initial commit
This commit is contained in:
commit
5ffef61fe7
613 changed files with 91659 additions and 0 deletions
38
server/config/session.js
Normal file
38
server/config/session.js
Normal file
|
@ -0,0 +1,38 @@
|
|||
/**
|
||||
* 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. *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
secret: '8b5b32787a446caa57c0a5abbb4ed6fe',
|
||||
|
||||
/***************************************************************************
|
||||
* *
|
||||
* 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 *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
// isSessionDisabled: function (req){
|
||||
// return !!req.path.match(req._sails.LOOKS_LIKE_ASSET_RX);
|
||||
// },
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue