Fix failure to serve media from custom upload path

stable
RX14 7 years ago
parent d70d1c427a
commit 033771d9f1
No known key found for this signature in database
GPG Key ID: CEF2BBFE18BD0E67

@ -58,7 +58,7 @@ defmodule Pleroma.Upload do
} }
end end
defp upload_path do def upload_path do
settings = Application.get_env(:pleroma, Pleroma.Upload) settings = Application.get_env(:pleroma, Pleroma.Upload)
Keyword.fetch!(settings, :uploads) Keyword.fetch!(settings, :uploads)
end end

@ -11,7 +11,7 @@ defmodule Pleroma.Web.Endpoint do
# #
# You should set gzip to true if you are running phoenix.digest # You should set gzip to true if you are running phoenix.digest
# when deploying your static files in production. # when deploying your static files in production.
plug(Plug.Static, at: "/media", from: "uploads", gzip: false) plug(Plug.Static, at: "/media", from: Pleroma.Upload.upload_path(), gzip: false)
plug( plug(
Plug.Static, Plug.Static,

Loading…
Cancel
Save