web-dev-qa-db-ja.com

Laravel非アクティブ時間設定

ユーザーがログインし、非アクティブのままである場合、そのシステムがユーザーを自動的にログアウトしてから何秒ですか?この設定を変更するには?

17
syraz37

認証を処理するためにセッションドライバーを使用していると仮定すると、アイドルセッションの期間を/app/config/session.phpファイルで期限切れに変更できます。

/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/

'lifetime' => 120,

'expire_on_close' => false,
34
Jeemusu