You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Script inlining is generally seen as a security risk and therefore requires special care when using CSP, i.e. 'unsafe-inline', nonces or hashes. The latter two can, however, cause issues with some browsers (particularly Safari), and nonces are a bit problematic to implement because they require the server sending a random number on each request.
We'd prefer loading the tracking script in a secure, reliable way via a script link over inlining:
Script inlining is generally seen as a security risk and therefore requires special care when using CSP, i.e.
'unsafe-inline'
, nonces or hashes. The latter two can, however, cause issues with some browsers (particularly Safari), and nonces are a bit problematic to implement because they require the server sending a random number on each request.We'd prefer loading the tracking script in a secure, reliable way via a script link over inlining:
But the Angular library of Piwik PRO has no such option: it always creates a script node in the
<head>
and sets its text.I see two solutions to this:
The text was updated successfully, but these errors were encountered: