2018-04-12 08:45:17 -04: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
|
|
|
|
|
2018-08-23 10:03:38 -04:00
|
|
|
if Rails.env.production?
|
|
|
|
assets_host = Rails.configuration.action_controller.asset_host || "https://#{ENV['WEB_DOMAIN'] || ENV['LOCAL_DOMAIN']}"
|
2018-08-28 15:41:03 -04:00
|
|
|
data_hosts = [assets_host]
|
|
|
|
|
|
|
|
if ENV['S3_ENABLED'] == 'true'
|
|
|
|
attachments_host = ENV['S3_ALIAS_HOST'] || ENV['S3_CLOUDFRONT_HOST'] || ENV['S3_HOSTNAME'] || "s3-#{ENV['S3_REGION'] || 'us-east-1'}.amazonaws.com"
|
|
|
|
elsif ENV['SWIFT_ENABLED'] == 'true'
|
|
|
|
attachments_host = ENV['SWIFT_OBJECT_URL']
|
|
|
|
else
|
|
|
|
attachments_host = nil
|
|
|
|
end
|
|
|
|
data_hosts << attachments_host unless attachments_host.nil?
|
2018-08-23 07:08:39 -04:00
|
|
|
|
2018-08-23 10:03:38 -04:00
|
|
|
Rails.application.config.content_security_policy do |p|
|
|
|
|
p.base_uri :none
|
|
|
|
p.default_src :none
|
|
|
|
p.frame_ancestors :none
|
|
|
|
p.script_src :self, assets_host
|
|
|
|
p.font_src :self, assets_host
|
2018-11-10 12:53:23 -05:00
|
|
|
p.img_src :self, :data, :blob, *data_hosts
|
2018-08-23 10:03:38 -04:00
|
|
|
p.style_src :self, :unsafe_inline, assets_host
|
2018-08-28 15:41:03 -04:00
|
|
|
p.media_src :self, :data, *data_hosts
|
2018-08-23 10:03:38 -04:00
|
|
|
p.frame_src :self, :https
|
2018-08-28 15:41:03 -04:00
|
|
|
p.worker_src :self, assets_host
|
|
|
|
p.connect_src :self, :blob, Rails.configuration.x.streaming_api_base_url, *data_hosts
|
2018-11-10 12:53:23 -05:00
|
|
|
p.manifest_src :self, assets_host
|
2018-08-23 10:03:38 -04:00
|
|
|
end
|
2018-08-22 11:22:34 -04:00
|
|
|
end
|
2018-04-12 08:45:17 -04:00
|
|
|
|
|
|
|
# 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
|