Try to be concrete in your question! What doesn’t work, what are you trying to do and on what platform (distribution, versions etc), tools etcetera?
This is on Ubuntu Server 16.04
php7
nextcloud 11 (upgraded as of today)
Everything after the upgrade runs fine
I do have https enabled and redirected
I do have the strict ssl enabled
I have never gotten memcache to work before
I am trying to setup memcche with redis. I have installed Redis, made it was running and set it start on boot. Everything works at this point.
However when I alter the config.php with the memcache stuff, this is when the nextcloud server literally goes white. Reboot … restart redis … nothing helps until I remove the entries from the config.php and then my site works again.
This is the site I am referencing… I have tried many many others … https://bayton.org/2016/07/installing-nextcloud-on-ubuntu-16-04-lts-with-redis-apcu-apache/
In that guide it said to change the port for redis to 0 in the redis config. so I did.
I also uncommented two lines and changed the permission on one … as below:
unixsocket /var/run/redis/redis.sock
unixsocketperm 700 changing permissions to 770 at the same time: unixsocketperm 770
I then ran this:
sudo usermod -a -G redis www-data
then I edited the config.php file and added this to the very bottom of the file right before the );
'memcache.local' => '\OC\Memcache\APCu',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'filelocking.enabled' => 'true',
'redis' =>
array (
'host' => '/var/run/redis/redis.sock',
'port' => 0,
'timeout' => 0.0,
),
so now my entire config.php looks like this: