config: add ssl/tls options for mysql and redis (#3464)
This commit is contained in:
parent
682ca6cecd
commit
801cb8e487
4 changed files with 48 additions and 8 deletions
|
@ -10,7 +10,7 @@ return [
|
|||
| using this caching library. This connection is used when another is
|
||||
| not explicitly specified when executing a given caching function.
|
||||
|
|
||||
| Supported: "apc", "array", "database", "file", "memcached", "redis"
|
||||
| Supported: "apc", "array", "database", "file", "memcached", "redis", "octane"
|
||||
|
|
||||
*/
|
||||
|
||||
|
@ -34,12 +34,14 @@ return [
|
|||
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'table' => 'cache',
|
||||
'connection' => null,
|
||||
'lock_connection' => null,
|
||||
],
|
||||
|
||||
'file' => [
|
||||
|
@ -69,6 +71,7 @@ return [
|
|||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'lock_connection' => 'default',
|
||||
],
|
||||
|
||||
'sessions' => [
|
||||
|
@ -76,6 +79,10 @@ return [
|
|||
'table' => 'sessions',
|
||||
'connection' => env('SESSION_DRIVER') === 'redis' ? 'sessions' : null,
|
||||
],
|
||||
|
||||
'octane' => [
|
||||
'driver' => 'octane',
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue