Hello! We're setting up a large, public Cryptpad instance. We're currently configuring test instances to make sure we understand all the configuration parameters perfectly. Our test instance is here: https://0xfad.net/checkup
Two of the Content-Security-Policy tests fail, seemingly because of unexpected contents of the $connectSrc string in our Nginx config. However our Nginx config is following the advanced template, with the recommended configuration added to account for dedicated api.0xfad.net and files.0xfad.net subdomains for future growth. Here's that part of our config:
set $connectSrc "'self' https://${main_domain} blob: wss://${api_domain} https://${sandbox_domain} https://${api_domain} https://${files_domain}";
My question is, are there steps we should take to change the diagnostics themselves in this case, or is there something about this configuration that we're misunderstanding?
The host is Debian 13, the install strategy is the official non-docker strategy.