Có thể hơi lỗi thời, nhưng tại thời điểm này, Express-session có thể nhận ra tùy chọn miền cho cookie. Theo nguồn:
function session(options){
var options = options || {}
// name - previously "options.key"
, name = options.name || options.key || 'connect.sid'
, store = options.store || new MemoryStore
, cookie = options.cookie || {}
...
Và đây là để thiết lập cookie:
var Cookie = module.exports = function Cookie(options) {
this.path = '/';
this.maxAge = null;
this.httpOnly = true;
if (options) merge(this, options);
...
Vì vậy, một cái gì đó như thế này sẽ hoạt động cho 1.10.1 master hiện tại:
secret: "my secret",
cookie: {
domain: "mydomain.com",