mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
b1f74ab59e
The strict-dynamic CSP directive is supported in all our target browsers, and makes for a much simpler configuration. Instead of allowlisting paths, we use a per-request nonce to authorize `<script>` tags, and then those scripts are allowed to load additional scripts (or add additional inline scripts) without restriction. This becomes especially useful when admins want to add external scripts like Google Tag Manager, or advertising scripts, which then go on to load a ton of other scripts. All script tags introduced via themes will automatically have the nonce attribute applied, so it should be zero-effort for theme developers. Plugins *may* need some changes if they are inserting their own script tags. This commit introduces a strict-dynamic-based CSP behind an experimental `content_security_policy_strict_dynamic` site setting.
17 lines
554 B
Ruby
17 lines
554 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "middleware/anonymous_cache"
|
|
|
|
enabled =
|
|
if Rails.configuration.respond_to?(:enable_anon_caching)
|
|
Rails.configuration.enable_anon_caching
|
|
else
|
|
Rails.env.production? || Rails.env.test?
|
|
end
|
|
|
|
if !ENV["DISCOURSE_DISABLE_ANON_CACHE"] && enabled
|
|
# in an ideal world this is position 0, but mobile detection uses ... session and request and params
|
|
Rails.configuration.middleware.insert_after Middleware::CspScriptNonceInjector,
|
|
Middleware::AnonymousCache
|
|
end
|