endpoint: move CORSPlug in front of Plug.Static

This commit is contained in:
William Pitcock 2018-11-10 11:23:50 +00:00
parent 03a9990baf
commit 4f87b8362b

View file

@ -11,6 +11,8 @@ defmodule Pleroma.Web.Endpoint do
#
# You should set gzip to true if you are running phoenix.digest
# when deploying your static files in production.
plug(CORSPlug)
plug(Plug.Static, at: "/media", from: Pleroma.Uploaders.Local.upload_path(), gzip: false)
plug(
@ -57,7 +59,6 @@ defmodule Pleroma.Web.Endpoint do
extra: "SameSite=Strict"
)
plug(CORSPlug)
plug(Pleroma.Web.Router)
@doc """