Bug description
When I try to open a onlyoffice file in nextcloud I Get this error,
“This content is blocked. Contact the site owner to fix the issue.”
both of my services nextcloud and onlyoffice run in docker behind a reverse proxy all of that is hosted on my QNAP nas
I dont see any error log in portainer.
Steps to reproduce
I’ve Install nextcloud and onlyoffice with docker
both sit behind a reverse proxy
Expected behavior
open the document with the onlyoffice editor
Installation method
Official Docker image
Operating system
Other
PHP engine version
PHP 8.0
Web server
Apache (supported)
Database engine version
SQlite
Is this bug present after an update or on a fresh install?
Fresh Nextcloud Server install
config.php
<?php
$CONFIG = array (
'htaccess.RewriteBase' => '/',
'memcache.local' => '\\OC\\Memcache\\APCu',
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'instanceid' => 'XXXXXXXXXXXXX',
'passwordsalt' => 'XXXXXXXXXXXXXXXXXXXXXX',
'secret' => 'XXXXXXXXXXXXXXXXXXX',
'trusted_domains' =>
array (
0 => 'localhost:8085',
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'sqlite3',
'version' => '23.0.1.2',
'overwrite.cli.url' => 'http://localhost:8085',
'overwrite.cli.url' => 'http://nextcloud.XXX.fr',
'installed' => true,
'trusted_proxies' => ['10.0.3.1'],
'overwritehost' => 'nextcloud.XXX.fr',
'overwriteprotocol' => 'https',
'overwritewebroot' => '/',
'overwritecondaddr' => '^10\.0\.3\.1$',
);