Last active
October 22, 2023 19:46
-
-
Save ryanirelan/b79c5471bf278930475a5b613d327860 to your computer and use it in GitHub Desktop.
app.php configuration for using Redis and Craft CMS 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Yii Application Config | |
* | |
* Edit this file at your own risk! | |
* | |
* The array returned by this file will get merged with | |
* vendor/craftcms/cms/src/config/app.php and app.[web|console].php, when | |
* Craft's bootstrap script is defining the configuration for the entire | |
* application. | |
* | |
* You can define custom modules and system components, and even override the | |
* built-in system components. | |
* | |
* If you want to modify the application config for *only* web requests or | |
* *only* console requests, create an app.web.php or app.console.php file in | |
* your config/ folder, alongside this one. | |
*/ | |
return [ | |
// All environments | |
'*' => [ | |
'modules' => [ | |
'my-module' => \modules\Module::class, | |
], | |
//'bootstrap' => ['my-module'], | |
], | |
// Live (production) environment | |
'production' => [ | |
'components' => [ | |
// Default to database 0, so PHP sessions are in a separate database | |
'redis' => [ | |
'class' => yii\redis\Connection::class, | |
'hostname' => 'localhost', | |
'port' => 6379, | |
'database' => 0, | |
], | |
'cache' => [ | |
// Use database 1 for live production | |
'class' => yii\redis\Cache::class, | |
'redis' => [ | |
'hostname' => 'localhost', | |
'port' => 6379, | |
'database' => 1, | |
], | |
], | |
'session' => [ | |
'class' => \yii\redis\Session::class, | |
'as session' => [ | |
'class' => \craft\behaviors\SessionBehavior::class, | |
], | |
], | |
], | |
], | |
// Staging (pre-production) environment | |
'staging' => [ | |
// Default to database 0, so PHP sessions are in a separate database | |
'components' => [ | |
'redis' => [ | |
'class' => yii\redis\Connection::class, | |
'hostname' => 'localhost', | |
'port' => 6379, | |
'database' => 0, | |
], | |
// Use database 2 for staging | |
'cache' => [ | |
'class' => yii\redis\Cache::class, | |
'redis' => [ | |
'hostname' => 'localhost', | |
'port' => 6379, | |
'database' => 2, | |
], | |
], | |
'session' => [ | |
'class' => \yii\redis\Session::class, | |
'as session' => [ | |
'class' => \craft\behaviors\SessionBehavior::class, | |
], | |
], | |
], | |
], | |
// Local (development) environment | |
'dev' => [ | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment