Operation blocked by access control error after update on uploading files larger than 20 mbs

The files server was working fine but after update, “Operation blocked by access control” error is being shown when trying to upload files larger than 20mbs. All the files smaller than that size upload successfully. As for logs, there is much output being shown about this error.

Almost all the settings were the default ones that are configured during installation. I tried poking around to find the problem but to no avail.
Can somebody help?
If you need any information please type and I will try my best to provide that info.

I experience the exact same issue. Were you able to solve it?

Hey everyone,

has anyone solved the issue?

I have it on my NC 26.0.2 running on Ubuntu Server 22.04.2. and Apache2

I dont exactly remember but i did solve it it was a problem with my nginx configuration. It was missing a slash in a location config if you show me your config i may be able to tell you

I am using apache2, here is the confoguration:

VirtualHost *:80>
    DocumentRoot "/var/www/domain.com"
    ServerName domain.com

    <Directory "/var/www/domain.com/">
        Options MultiViews FollowSymlinks
        AllowOverride All
        Order allow,deny
        Allow from all
   </Directory>

   TransferLog /var/log/apache2/domain.com_access.log
   ErrorLog /var/log/apache2/domain.com_error.log

RewriteEngine on
RewriteCond %{SERVER_NAME} =domain.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>