Quick & Dirty Redis Setup

This commit is contained in:
WilliamMiceli
2019-02-02 13:59:47 -05:00
parent 25c43b9351
commit 8f3093e5ec
2 changed files with 14 additions and 0 deletions

View File

@@ -8,6 +8,12 @@
* [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
* Explain how to manually setup Redis

View File

@@ -0,0 +1,8 @@
<?php
$CONFIG = array (
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);