From: ckleemann Date: Sat, 20 Feb 2021 13:25:28 +0000 (+0100) Subject: Introduce an env variable for the Session Cookie Path X-Git-Tag: v21.04~1^2~11^2~13^2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/refs/pull/2573/head?ds=sidebyside Introduce an env variable for the Session Cookie Path --- diff --git a/.env.example.complete b/.env.example.complete index 9b8c8298a..8369e5973 100644 --- a/.env.example.complete +++ b/.env.example.complete @@ -73,6 +73,7 @@ SESSION_DRIVER=file # Session configuration SESSION_LIFETIME=120 SESSION_COOKIE_NAME=bookstack_session +SESSION_COOKIE_PATH=/ SESSION_SECURE_COOKIE=false # Cache key prefix diff --git a/app/Config/session.php b/app/Config/session.php index 571836bd2..84916bcd4 100644 --- a/app/Config/session.php +++ b/app/Config/session.php @@ -59,7 +59,7 @@ return [ // The session cookie path determines the path for which the cookie will // be regarded as available. Typically, this will be the root path of // your application but you are free to change this when necessary. - 'path' => '/', + 'path' => env('SESSION_COOKIE_PATH', '/'), // Session Cookie Domain // Here you may change the domain of the cookie used to identify a session