Debugging Nextcloud slowness
April 4, 2023•1,334 words
Debugging Nextcloud slowness
My Nextcloud setup is architected as a 3-tier application: it is frontend by a Nginx proxy, served by apache, and data is stored in MySQL, Redis and a NFS server for static files.
Problem: Loading the frontpage takes ~10 seconds.
Client-side investigation
To start the investigation, I opened the network tab of Firefox, and re-loaded the page.
Looking at the Timings tab, we can see that the client spent 9.29s waiting for the server. It's a single page proces...
Read post