Quick & Dirty Redis Setup
This commit is contained in:
@@ -8,6 +8,12 @@
|
|||||||
|
|
||||||
* [Official Security Check](https://scan.nextcloud.com/)
|
* [Official Security Check](https://scan.nextcloud.com/)
|
||||||
|
|
||||||
|
## Easy Redis Setup
|
||||||
|
|
||||||
|
Copy the "redis.config.php" file into your Configuration directory.
|
||||||
|
You may need to restart your stack for it to pick up.
|
||||||
|
You can monitor if it is working by opening a shell terminal on your Redis container and using `redis-cli MONITOR`
|
||||||
|
|
||||||
## To-Do's
|
## To-Do's
|
||||||
|
|
||||||
* Explain how to manually setup Redis
|
* Explain how to manually setup Redis
|
||||||
|
|||||||
8
templates/Nextcloud/0/redis.config.php
Normal file
8
templates/Nextcloud/0/redis.config.php
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?php
|
||||||
|
$CONFIG = array (
|
||||||
|
'memcache.locking' => '\OC\Memcache\Redis',
|
||||||
|
'redis' => array(
|
||||||
|
'host' => 'redis',
|
||||||
|
'port' => 6379,
|
||||||
|
),
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user