Merge pull request #1563 from nextcloud/backport/1560/stable14

[stable14] note on the redis socket file permissions
This commit is contained in:
Morris Jobke 2019-07-19 16:11:50 +02:00 committed by GitHub
commit 932647a487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,6 +161,16 @@ recommended if Redis is running on the same system as Nextcloud) use this exampl
Only "host" and "port" variables are required, the other ones are optional.
Be sure to set the right permissions on redis.sock so that your webserver can
read and write to it. For this you typically have to add the webserver user
to the redis group::
usermod -a -G redis www-data
You might need to restart apache for the changes to take effect::
systemctl restart apache2
Redis is very configurable; consult `the Redis documentation
<http://redis.io/documentation>`_ to learn more.