I have Nextcloud v27.0.2 running in Docker (specifically the image 27.0.2-apache
) and notice that when I login as an admin user it takes minutes before each page loads. I had to increase the timeout of the nginx reverse proxy to 5 minutes to not constantly receive 504 errors.
Regular users could browse the instance as usual, no slowdowns occurred there.
I have a docker-compose file that starts up redis, mariadb, and two nextcloud containers (one for the web-app, one for the cron tasks). Nextcloud user data (/var/www/nextcloud_data
) and the application folder (/var/www/html
) is persisted using Docker volumes, as is the database.
How can I diagnose and resolve this issue that only occurs with admin users?