App Page not loading images

Today I notice that my app page is not loading the images of all the apps. What should I do to fix this?

Icons are showing fine, and my gallery photos are loading normally. It is only this page.

The app images are loaded from https://usercontent.apps.nextcloud.com, so you could check your browser console for errors explaining, why the images were not loaded. It’s most likely the configuration of the webserver or some addon, which blocks external ressources.

EDIT: I got it! it was UBlock origin after all I needed to add the filter: example.tld nextcloud.com * allow Even if it said it wasn’t blocking anything it totally did anyway


I’ve been having the same issue for quite a long time as well, been trying to figure this out recently with no luck. Even when switching to docker this still persists.

In Firefox I have UBlock origin and privacy badger installed. Neither report blocking anything

The only error in my console:

Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”). 2 utils.js:35:9

I am seeing no requests to https://usercontent.apps.nextcloud.com/

I am using the latest Nexcloud apache docker image behind an nginx revers proxy for ssl and using http2

  location = /.well-known/carddav {
    return 301 $scheme://$host/remote.php/dav;
  }
  location = /.well-known/caldav {
    return 301 $scheme://$host/remote.php/dav;
  }

  location / {
        proxy_http_version 1.1;
        proxy_pass http://localhost:8066/;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $http_connection;
        add_header Strict-Transport-Security "max-age=15768000; includeSubDomains;";
        client_max_body_size 0;
  }

  location ~ ^\/(?:build|tests|config|lib|3rdparty|templates|data)\/ {
    deny all;
  }

  location ~ ^\/(?:\.|autotest|occ|issue|indie|db_|console) {
    deny all;
  }

Screenshot:
image