BinghamtonUniversity / IAMBing

A Highly Configurable Identity & Access Management (IAM) Engine
MIT License
3 stars 0 forks source link

Check Session Management. #10

Closed timcortesi closed 2 years ago

timcortesi commented 2 years ago

Are we using database sessions? File sessions? Need to check

Probably just need to change the following line: 'driver' => env('SESSION_DRIVER', 'file'),

(add SESSION_DRIVER=file in local dev .env file)

See documentation: https://laravel.com/docs/9.x/session

alikemaltanriverdi commented 2 years ago

https://github.com/BinghamtonUniversity/IAMBing/commit/c2371e9810dfa144b76425cbe08341cff7545b5c is addresing this issue. We are currently using "file" as default session manager, so I have updated it to redis in order to our redis driver. I am still using 'file' as my local session driver

timcortesi commented 2 years ago

Looks fixed. Marking as closed/complete