gab-social/config/initializers/content_security_policy.rb

35 lines
1.7 KiB
Ruby
Raw Normal View History

2019-07-02 08:10:25 +01:00
# Define an application-wide content security policy
# For further information see the following documentation
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
base_host = Rails.configuration.x.web_domain
assets_host = Rails.configuration.action_controller.asset_host
assets_host ||= "http#{Rails.configuration.x.use_https ? 's' : ''}://#{base_host}"
Rails.application.config.content_security_policy do |p|
p.base_uri :none
p.default_src :none
2019-11-21 12:16:37 +00:00
p.frame_ancestors :self, "https://*.gab.com", "https://*.openplatform.us"
2019-07-02 08:10:25 +01:00
p.font_src :self, assets_host
p.img_src :self, :https, :data, :blob, assets_host
p.style_src :self, :unsafe_inline, assets_host
p.media_src :self, :https, :data, assets_host
p.frame_src :self, :https
p.manifest_src :self, assets_host
if Rails.env.development?
webpacker_urls = %w(ws http).map { |protocol| "#{protocol}#{Webpacker.dev_server.https? ? 's' : ''}://#{Webpacker.dev_server.host_with_port}" }
2020-04-02 04:17:21 +01:00
p.connect_src :self, :blob, assets_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls, "https://*.gab.com", "https://api.tenor.com"
2020-02-05 02:25:33 +00:00
p.script_src :self, :unsafe_inline, :unsafe_eval, assets_host, "https://*.gab.com"
2019-07-02 08:10:25 +01:00
else
2020-04-02 04:17:21 +01:00
p.connect_src :self, :blob, assets_host, Rails.configuration.x.streaming_api_base_url, "https://*.gab.com", "https://api.tenor.com"
2020-02-05 02:25:33 +00:00
p.script_src :self, assets_host, "https://*.gab.com"
2019-07-02 08:10:25 +01:00
end
end
# Report CSP violations to a specified URI
# For further information see the following documentation:
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
# Rails.application.config.content_security_policy_report_only = true