r/nextcloud: Correct memcache config syntax

Nextcloud uses double backslashes in its fully-qualified path names.
Although single backslashes work, the application will replace them,
leading to a constant conflict between itself and the Ansible template.
ntfy
Dustin 2021-12-20 22:15:53 -06:00
parent e55fc8f5af
commit 7ab3787798
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ $CONFIG = array (
'mail_smtpport' => '{{ nextcloud_smtp.port }}', 'mail_smtpport' => '{{ nextcloud_smtp.port }}',
{% endif %} {% endif %}
'filelocking.enabled' => true, 'filelocking.enabled' => true,
'memcache.distributed' => '\OC\Memcache\Redis', 'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\OC\Memcache\Redis', 'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' => 'redis' =>
array ( array (
'host' => 'localhost', 'host' => 'localhost',