Skip to content

Commit

Permalink
fixed CSP settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mfaust committed Apr 17, 2023
1 parent 9b691a7 commit 3c7e9d7
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@ public class AcrolinxCSPSettings implements CSPSettings {

@Override
public List<String> getScriptSrc() {
return Arrays.asList("'unsafe-eval'", "'self'", "data:", "http:", "https:",
return Arrays.asList("'unsafe-eval'", "'unsafe-inline'", "'self'", "data:", "http:", "https:",
"https://unpkg.com/",
"app.eu.pendo.io",
"pendo-eu-static.storage.googleapis.com",
"cdn.eu.pendo.io",
"pendo-eu-static-5227652489019392.storage.googleapis.com",
"data.eu.pendo.io",
"'sha256-uvjFzlIG+c9vTvlPjd4XprgNwAHtbxCBrl7kg8AOP3A='",
"'sha256-czdU7T58bnMmn54YmKphBkPUShRlMF5Naf66fSAEVF8='");
"data.eu.pendo.io");
}

@Override
Expand Down

0 comments on commit 3c7e9d7

Please sign in to comment.