Fix FLEXIAPI-372 Remove SESSION_DRIVER and CACHE_DRIVER and enforce them to file

This commit is contained in:
Timothée Jaussoin 2025-08-26 14:05:05 +02:00
parent 60df61d508
commit 2ec4f488b6
5 changed files with 4 additions and 4 deletions

View file

@ -77,6 +77,7 @@ v2.0
- Fix FLEXIAPI-363 Send the Redis publish event when the externalAccount is deleted to ping the Flexisip B2BUA
- Fix FLEXIAPI-364 Fix a faulty redirection in the ExternalAccount controller
- Fix FLEXIAPI-361 Prepare the 2.0 release
- Fix FLEXIAPI-372 Remove SESSION_DRIVER and CACHE_DRIVER and enforce them to file
v1.6
----

View file

@ -40,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
- ACCOUNT_PROVISIONING_USE_X_LINPHONE_PROVISIONING_HEADER
- **Complete and reorganize the Markdown documentation**
- **Refactor the emails templates** All the emails were modernized and are now generated in HTML
- **Enforce SESSION_DRIVER and CACHE_DRIVER to file** They can be removed from your DotEnv file as well.
### Removed

View file

@ -60,9 +60,7 @@ REDIS_DB=
# Ensure that you have the proper SELinux configuration to write in the storage directory, see the README
LOG_CHANNEL=stack
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
# SMTP and emails

View file

@ -18,7 +18,7 @@ return [
|
*/
'default' => env('CACHE_DRIVER', 'file'),
'default' => 'file',
/*
|--------------------------------------------------------------------------

View file

@ -18,7 +18,7 @@ return [
|
*/
'driver' => env('SESSION_DRIVER', 'file'),
'driver' => 'file',
/*
|--------------------------------------------------------------------------