Created
November 23, 2024 21:20
-
-
Save johannschopplich/bc18f64e528d750b084fb528699ec5ba to your computer and use it in GitHub Desktop.
Ploi.io nginx Configuration Extensions for Kirby CMS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---------------------------------------------------------------------- | |
# | Cache expiration | | |
# ---------------------------------------------------------------------- | |
# Serve resources with a far-future expiration date. | |
# | |
# (!) If you don't control versioning with filename-based cache busting, you | |
# should consider lowering the cache times to something like one week. | |
# | |
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control | |
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expires | |
# https://nginx.org/en/docs/http/ngx_http_headers_module.html#expires | |
map $sent_http_content_type $expires { | |
# Default: Fallback | |
default 1y; | |
# Default: No content | |
"" off; | |
# Specific: Assets | |
~*image/svg\+xml 1y; | |
~*image/vnd.microsoft.icon 1w; | |
~*image/x-icon 1w; | |
# Specific: Manifests | |
~*application/manifest\+json 1w; | |
~*text/cache-manifest epoch; | |
# Specific: Data interchange | |
~*application/atom\+xml 1h; | |
~*application/rdf\+xml 1h; | |
~*application/rss\+xml 1h; | |
# Specific: Documents | |
~*text/html epoch; | |
~*text/markdown epoch; | |
~*text/calendar epoch; | |
# Specific: Other | |
~*text/x-cross-domain-policy 1w; | |
# Generic: Data | |
~*json epoch; | |
~*xml epoch; | |
# Generic: WebAssembly | |
# ~*application/wasm 1y; # default | |
# Generic: Assets | |
# ~*application/javascript 1y; # default | |
# ~*application/x-javascript 1y; # default | |
# ~*text/javascript 1y; # default | |
# ~*text/css 1y; # default | |
# Generic: Medias | |
~*audio/. 1y; # default | |
~*image/ 1y; # default | |
~*video/ 1y; # default | |
~*font/ 1y; # default | |
} | |
expires $expires; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ---------------------------------------------------------------------- | |
# | Compression | | |
# ---------------------------------------------------------------------- | |
# https://nginx.org/en/docs/http/ngx_http_gzip_module.html | |
# Compress all output labeled with one of the following MIME-types. | |
# `text/html` is always compressed by gzip module. | |
# Default: text/html | |
gzip_types | |
application/atom+xml | |
application/geo+json | |
application/javascript | |
application/x-javascript | |
application/json | |
application/ld+json | |
application/manifest+json | |
application/rdf+xml | |
application/rss+xml | |
application/vnd.ms-fontobject | |
application/wasm | |
application/x-web-app-manifest+json | |
application/xhtml+xml | |
application/xml | |
font/eot | |
font/otf | |
font/ttf | |
image/bmp | |
image/svg+xml | |
image/vnd.microsoft.icon | |
image/x-icon | |
text/cache-manifest | |
text/calendar | |
text/css | |
text/javascript | |
text/markdown | |
text/plain | |
text/xml | |
text/vcard | |
text/vnd.rim.location.xloc | |
text/vtt | |
text/x-component | |
text/x-cross-domain-policy; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment