エラー:
Uncaught Template render error: (result.html)
EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "default-src *".
nginx 構成:
[..]
more_set_headers "Content-Security-Policy:
default-src * 'unsafe-eval' 'unsave-inline';
script-src 'self' 'unsafe-inline' 'unsafe-eval' 'unsafe-inline' https://cdn.raygun.io https://cdn.segment.com https://platform.instagram.com https://www.google-analytics.com https://cdn.mxpnl.com https://maxcdn.bootstrapcdn.com;
connect-src 'self' https://api.raygun.io https://api.parse.com https://api.segment.io https://api.mixpanel.com;
img-src 'self' data: https://*.amazonaws.com https://www.google-analytics.com https://*.akamaihd.net https://www.google.com https://*.licdn.com;
style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://maxcdn.bootstrapcdn.com;
font-src 'self' https://fonts.gstatic.com https://maxcdn.bootstrapcdn.com;
frame-src https://instagram.com";
[..]
問題:
nginx config で設定されたContent-Security-Policyが適用されていないようです。サーバーから返されたヘッダーを確認しましたが、適切に設定されています (unsafe-inline と unsafe-eval を含む)。
質問:
ヘルプ?またはより詳細に: Chrome にnunjuncksテンプレートをレンダリングさせるには、他に何をする必要がありますか?
サーバー側で動作するソリューションを探しています (Chrome プラグインなし)。