PHP iki seans var:
$_SESSION["session"]["key"] = md5 ($token . $userAgent . $ip);
$_SESSION["session"]["timeout"] = time ();
Sadece başarı olmadan nginx ile oturumları, bu kod çalıştı olmadığını kontrol etmek istiyorum:
location / {
if ($request_filename ~* "index.php") {
break;
}
if ($http_cookie ~* "session") {
break;
}
rewrite ^.+$ https://localhost/index.php last;
}
Herhangi bir ipucu?
Teşekkürler.