diff --git a/nextcloud/README.md b/nextcloud/README.md index d4fe78e..74b34bd 100644 --- a/nextcloud/README.md +++ b/nextcloud/README.md @@ -62,6 +62,7 @@ Browse to Nextcloud setup page, then : #### Configure In the admin panel, you should switch from `AJAX cron` to `cron` (system cron). + To **enable APCU**, add this line to your config.php : ``` @@ -129,6 +130,7 @@ You can update everything with `docker-compose pull` followed by `docker-compose #### Reverse proxy You should be familiar with reverse proxying, otherwise you should read some documentation about it. If you're using nginx, there are two possibilites : + - nginx is on the host : use the IP address you can get with `docker inspect nextcloud | grep IPAddress\" | head -n1 | grep -Eo "[0-9.]+" `. But whenever the container is restarted or recreated, its IP address can change. - nginx is in a container, things are easier : https://github.com/hardware/mailserver/wiki/Reverse-proxy-configuration (example). If you don't get it : **nextcloud is linked to nginx** (containers) so you can use `proxy_pass http://nextcloud`. Very easy. I suggest you to use my image `wonderfall/nginx`, which provides a tool named `ngxproxy` aiming at automatically create a vhost file. You will be asked a few questions.