Allow access to CSS resources

Fixes https://github.com/nextcloud/server/issues/2984

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2017-01-09 12:52:43 +01:00
parent 4f9ff96f79
commit 69f3430552
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
1 changed files with 16 additions and 8 deletions

View File

@ -791,23 +791,31 @@ class OC {
&& !\OC::$server->getTrustedDomainHelper()->isTrustedDomain($host)
&& self::$server->getConfig()->getSystemValue('installed', false)
) {
header('HTTP/1.1 400 Bad Request');
header('Status: 400 Bad Request');
// Allow access to CSS resources
$isScssRequest = false;
if(strpos($request->getPathInfo(), '/css/') === 0) {
$isScssRequest = true;
}
\OC::$server->getLogger()->warning(
if (!$isScssRequest) {
header('HTTP/1.1 400 Bad Request');
header('Status: 400 Bad Request');
\OC::$server->getLogger()->warning(
'Trusted domain error. "{remoteAddress}" tried to access using "{host}" as host.',
[
'app' => 'core',
'remoteAddress' => $request->getRemoteAddress(),
'host' => $host,
]
);
);
$tmpl = new OCP\Template('core', 'untrustedDomain', 'guest');
$tmpl->assign('domain', $host);
$tmpl->printPage();
$tmpl = new OCP\Template('core', 'untrustedDomain', 'guest');
$tmpl->assign('domain', $host);
$tmpl->printPage();
exit();
exit();
}
}
\OC::$server->getEventLogger()->end('boot');
}