Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
7ac0a819
Commit
7ac0a819
authored
Jan 30, 2021
by
feld
Browse files
Merge branch 'emoji-cache' into 'develop'
Emoji cache Closes
#2468
See merge request
!3291
parents
4e050e51
b794dae9
Pipeline
#34531
passed with stages
in 99 minutes and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/endpoint.ex
View file @
7ac0a819
...
@@ -23,6 +23,18 @@ defmodule Pleroma.Web.Endpoint do
...
@@ -23,6 +23,18 @@ defmodule Pleroma.Web.Endpoint do
# InstanceStatic needs to be before Plug.Static to be able to override shipped-static files
# InstanceStatic needs to be before Plug.Static to be able to override shipped-static files
# If you're adding new paths to `only:` you'll need to configure them in InstanceStatic as well
# If you're adding new paths to `only:` you'll need to configure them in InstanceStatic as well
# Cache-control headers are duplicated in case we turn off etags in the future
# Cache-control headers are duplicated in case we turn off etags in the future
plug
(
Pleroma
.
Web
.
Plugs
.
InstanceStatic
,
at:
"/"
,
from:
:pleroma
,
only:
[
"emoji"
,
"images"
],
gzip:
true
,
cache_control_for_etags:
"public, max-age=1209600"
,
headers:
%{
"cache-control"
=>
"public, max-age=1209600"
}
)
plug
(
Pleroma
.
Web
.
Plugs
.
InstanceStatic
,
plug
(
Pleroma
.
Web
.
Plugs
.
InstanceStatic
,
at:
"/"
,
at:
"/"
,
gzip:
true
,
gzip:
true
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment