cache headers for emoji and images
This commit is contained in:
parent
7f07871639
commit
35cad9793d
@ -63,6 +63,18 @@ defmodule Pleroma.Web.Endpoint do
|
|||||||
Plug.Static,
|
Plug.Static,
|
||||||
at: "/",
|
at: "/",
|
||||||
from: :pleroma,
|
from: :pleroma,
|
||||||
|
only: ["emoji", "images"],
|
||||||
|
gzip: true,
|
||||||
|
cache_control_for_etags: "public, max-age=1209600",
|
||||||
|
headers: %{
|
||||||
|
"cache-control" => "public, max-age=1209600"
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
plug(
|
||||||
|
Plug.Static,
|
||||||
|
at: "/",
|
||||||
|
from: :pleroma,
|
||||||
only: Pleroma.Constants.static_only_files(),
|
only: Pleroma.Constants.static_only_files(),
|
||||||
# credo:disable-for-previous-line Credo.Check.Readability.MaxLineLength
|
# credo:disable-for-previous-line Credo.Check.Readability.MaxLineLength
|
||||||
gzip: true,
|
gzip: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user