Authored by xuhongyun

修改会话有效时长为10小时

... ... @@ -16,7 +16,7 @@ module.exports=function(app) {
console.log(n);
var item = n.split("=");
if (item.length > 1 && item[0] == "PHPSESSID") {
res.cookie(item[0], item[1], { maxAge: 7200000, httpOnly: true, domain: ".yohobuy.com" });
res.cookie(item[0], item[1], { maxAge: 36000000, httpOnly: true, domain: ".yohobuy.com" });
}
});
}
... ...
... ... @@ -13,7 +13,7 @@ var grayroute = require("./mid/grayrouter");
var options = {
secret: 'yohobuy.shops', //session配置
// cookie: {secure: false, maxAge: 7200000},
cookie: {secure: false, maxAge: 7200000, domain: '.yohobuy.com'},
cookie: {secure: false, maxAge: 36000000, domain: '.yohobuy.com'},
resave: false,
saveUninitialized: true,
rolling: true
... ...