I have a django app, and the autheticate user use the cookies, i set de cookie age with de value 36000
SESSION_COOKIE_AGE = 36000 #
In Google Chrome the cookie sessionid set the expired date 1969-12-31T23:59:59.000Z
The app logout in 3 minutes, in other browser have the same problem
In my server i used gunicorn(timeout workers 600s) + nginx(keep_alive_timeout 20m)
Whats the problem?