Browse Source

Merge branch 'bugfix/connect-src-https' into 'develop'

Plugs.HTTPSecurityPlug: Add static_url to CSP's connect-src

See merge request pleroma/pleroma!900
tags/v1.1.4
kaniini 5 years ago
parent
commit
39b766cc43
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      lib/pleroma/plugs/http_security_plug.ex

+ 6
- 3
lib/pleroma/plugs/http_security_plug.ex View File

@@ -34,13 +34,16 @@ defmodule Pleroma.Plugs.HTTPSecurityPlug do


defp csp_string do defp csp_string do
scheme = Config.get([Pleroma.Web.Endpoint, :url])[:scheme] scheme = Config.get([Pleroma.Web.Endpoint, :url])[:scheme]
websocket_url = String.replace(Pleroma.Web.Endpoint.static_url(), "http", "ws")
static_url = Pleroma.Web.Endpoint.static_url()
websocket_url = String.replace(static_url, "http", "ws")

connect_src = "connect-src 'self' #{static_url} #{websocket_url}"


connect_src = connect_src =
if Mix.env() == :dev do if Mix.env() == :dev do
"connect-src 'self' http://localhost:3035/ " <> websocket_url
connect_src <> " http://localhost:3035/"
else else
"connect-src 'self' " <> websocket_url
connect_src
end end


script_src = script_src =


Loading…
Cancel
Save