j-ed
January 7, 2020, 3:19pm
2
Have you seen this nice little search function in the upper right corner of the screen? It allows to find answers on questions which have already been answered, e.g.
SOLUTION:
I needed the original patch for response.php, plus modifying /var/www/nextcloud/lib/public/AppFramework/Http/ContentSecurityPolicy.php to reflect my other server’s web address like so:
protected $allowedFrameDomains = [
’https://*.klein.us’,
];
/** @var array Domains which can embed this Nextcloud instance /
protected $allowedFrameAncestors = [
‘‘self’’,
'https://.klein.us’,
]
And response.php is modified to look like:
header(‘X-Frame-Options: allow-from https://*.klein.us’)…