diff --git a/templates/Nextcloud/0/README.md b/templates/Nextcloud/0/README.md index 6a42d1f..013726b 100644 --- a/templates/Nextcloud/0/README.md +++ b/templates/Nextcloud/0/README.md @@ -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 diff --git a/templates/Nextcloud/0/redis.config.php b/templates/Nextcloud/0/redis.config.php new file mode 100644 index 0000000..56e831a --- /dev/null +++ b/templates/Nextcloud/0/redis.config.php @@ -0,0 +1,8 @@ + '\OC\Memcache\Redis', + 'redis' => array( + 'host' => 'redis', + 'port' => 6379, + ), +); \ No newline at end of file