Spinning wheel in APP list

Hi,

after doing a fresh install of Nextcloud 10 on Debian 8, mysql, I cannot add or configure APPs. Opening the dropdown menu on the left side of the web interface shows the activated apps with the spinning wheel. The apps “activity” can be started and seems to work, starting “Apps” results in spinning wheel on the left and right side of the web ui, no progress even after waiting a very long time.
Nextcloud.log is empty.

Any idea what might have happend?

Thanks for your ideas!

Hi @dschulz,

I am sorry to hear about your problems with configuring your Nextcloud. Could you please provide some more information about your instance (OS, Webserver, PHP, …) … The easiest way to do this would be to fill out the issue template you will find here:

Thank you :wink:

Marius

Hi Marius,

I have just found the reason for the problems. Due to a security audit I have set a few Headers within Apache.

Removing the following solved my problem:
Header set Content-Security-Policy “default-src https:”

Here is a complete list of my headers:

<IfModule mod_headers.c>
  Header set X-Content-Type-Options nosniff
  Header set X-Frame-Options  DENY
  Header set Content-Security-Policy  "frame-ancestors 'none'"
  Header set X-XSS-Protection "1; mode=block"
  #  Header set Content-Security-Policy "default-src https:"
</IfModule>

Perhaps you have an idea what have happened.

OS is Debian 8.5
web server is Apache 2.4.10

Thanks a lot
Dirk

This probably happens because we set the CSP policy as well. @LukasReschke should know more

Your CSP header is not really more secure than the one we ship by default. Also, don’t set such headers yourself. It will break stuff.