Skip to content

Commit

Permalink
Merge 282f564 into 5fe4453
Browse files Browse the repository at this point in the history
  • Loading branch information
pykettk authored Sep 30, 2024
2 parents 5fe4453 + 282f564 commit 7f1a489
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions help/configuration/cache/redis-session.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,9 @@ bin/magento setup:config:set --session-save=redis --session-save-redis-host=127.
Commerce adds lines similar to the following to `<magento_root>app/etc/env.php`:

```php
'session' =>
array (
'save' => 'redis',
'redis' =>
array (
'session' => [
'save' => 'redis',
'redis' => [
'host' => '127.0.0.1',
'port' => '6379',
'password' => '',
Expand All @@ -85,9 +83,9 @@ Commerce adds lines similar to the following to `<magento_root>app/etc/env.php`:
'bot_lifetime' => '7200',
'disable_locking' => '0',
'min_lifetime' => '60',
'max_lifetime' => '2592000'
)
),
'max_lifetime' => '2592000',
],
],
```

>[!INFO]
Expand Down

0 comments on commit 7f1a489

Please sign in to comment.