X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Fendpoint.ex;h=e869448de0d1cef67839a947c398cdaf82b4720e;hb=2348b272e020bd22520a4306be5f2fdc8469cfd1;hp=a79b0dca96c7067652a843a0eb0af5a91bb00373;hpb=a93f3421a704d6728a856d5d82cdbf9c43f3f897;p=akkoma diff --git a/lib/pleroma/web/endpoint.ex b/lib/pleroma/web/endpoint.ex index a79b0dca9..e869448de 100644 --- a/lib/pleroma/web/endpoint.ex +++ b/lib/pleroma/web/endpoint.ex @@ -8,8 +8,10 @@ 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 Plug.Static, - at: "/", from: :pleroma, gzip: false, - only: ~w(css fonts images js favicon.ico robots.txt) + at: "/media", from: "uploads", gzip: false + plug Plug.Static, + at: "/", from: :pleroma, + only: ~w(index.html static finmoji) # Code reloading can be explicitly enabled under the # :code_reloader configuration of your endpoint. @@ -17,6 +19,7 @@ defmodule Pleroma.Web.Endpoint do plug Phoenix.CodeReloader end + plug TrailingFormatPlug plug Plug.RequestId plug Plug.Logger