Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
fc37e581
Verified
Commit
fc37e581
authored
Mar 05, 2019
by
Haelwenn
Browse files
Plugs.HTTPSecurityPlug: Add static_url to CSP's connect-src
Closes:
!469
parent
682cc94d
Pipeline
#8565
passed with stages
in 6 minutes and 41 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
lib/pleroma/plugs/http_security_plug.ex
View file @
fc37e581
...
...
@@ -34,13 +34,16 @@ defp headers do
defp
csp_string
do
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
=
if
Mix
.
env
()
==
:dev
do
"
connect
-
src
'self'
http://localhost:3035/
"
<>
websocket_url
connect
_
src
<>
"
http://localhost:3035/
"
else
"
connect
-
src
'self' "
<>
websocket_url
connect
_
src
end
script_src
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment