forked from AkkomaGang/akkoma
Add CSP to mediaproxy links
This commit is contained in:
parent
9d83a1e23f
commit
7fb9960ccd
3 changed files with 5 additions and 2 deletions
|
@ -18,6 +18,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Support for `streams` public key URIs
|
- Support for `streams` public key URIs
|
||||||
- Bookmarks are cleaned up on DB prune now
|
- Bookmarks are cleaned up on DB prune now
|
||||||
|
|
||||||
|
## Security
|
||||||
|
- Fixed mediaproxy being a bit of a silly billy
|
||||||
|
|
||||||
## 2023.04
|
## 2023.04
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
|
@ -42,7 +42,7 @@ def call(%{request_path: <<"/", @path, "/", file::binary>>} = conn, opts) do
|
||||||
conn ->
|
conn ->
|
||||||
conn
|
conn
|
||||||
end
|
end
|
||||||
|> merge_resp_headers([{"content-security-policy", "sandbox"}])
|
|> merge_resp_headers([{"content-security-policy", "script-src none"}])
|
||||||
|
|
||||||
config = Pleroma.Config.get(Pleroma.Upload)
|
config = Pleroma.Config.get(Pleroma.Upload)
|
||||||
|
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -4,7 +4,7 @@ defmodule Pleroma.Mixfile do
|
||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :pleroma,
|
app: :pleroma,
|
||||||
version: version("3.9.0"),
|
version: version("3.9.1"),
|
||||||
elixir: "~> 1.14",
|
elixir: "~> 1.14",
|
||||||
elixirc_paths: elixirc_paths(Mix.env()),
|
elixirc_paths: elixirc_paths(Mix.env()),
|
||||||
compilers: [:phoenix] ++ Mix.compilers(),
|
compilers: [:phoenix] ++ Mix.compilers(),
|
||||||
|
|
Loading…
Reference in a new issue