forked from AkkomaGang/akkoma
Media proxy: follow HTTP redirects by default
This commit is contained in:
parent
8764f64690
commit
d8fcf7c5cf
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ defmodule Pleroma.Web.MediaProxy.MediaProxyController do
|
|||
use Pleroma.Web, :controller
|
||||
alias Pleroma.{Web.MediaProxy, ReverseProxy}
|
||||
|
||||
@default_proxy_opts [max_body_length: 25 * 1_048_576]
|
||||
@default_proxy_opts [max_body_length: 25 * 1_048_576, http: [follow_redirect: true]]
|
||||
|
||||
def remote(conn, params = %{"sig" => sig64, "url" => url64}) do
|
||||
with config <- Pleroma.Config.get([:media_proxy], []),
|
||||
|
|
Loading…
Reference in a new issue