server.use(express.json());
server.use(express.urlencoded({ extended: false }));
-server.use(getStaticDir(), express.static(path.resolve("./dist")));
+server.use(
+ getStaticDir(),
+ express.static(path.resolve("./dist"), {
+ maxAge: 24 * 60 * 60 * 1000, // 1 day
+ immutable: true,
+ })
+);
server.use(setCacheControl);
if (!process.env["LEMMY_UI_DISABLE_CSP"] && !process.env["LEMMY_UI_DEBUG"]) {
-import type { NextFunction, Response } from "express";
+import type { NextFunction, Request, Response } from "express";
import { UserService } from "../shared/services";
export function setDefaultCsp({
// interval is rather arbitrary and could be set higher (less server load) or lower (fresher data).
//
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
-export function setCacheControl({
- res,
- next,
-}: {
- res: Response;
- next: NextFunction;
-}) {
+export function setCacheControl(
+ req: Request,
+ res: Response,
+ next: NextFunction
+) {
const user = UserService.Instance;
let caching: string;
- if (user.auth()) {
- caching = "private";
+ if (
+ req.path.match(/\.(js|css|txt|manifest\.webmanifest)\/?$/) ||
+ req.path.includes("/css/themelist")
+ ) {
+ // Static content gets cached publicly for a day
+ caching = "public, max-age=86400";
} else {
- caching = "public, max-age=60";
+ if (user.auth()) {
+ caching = "private";
+ } else {
+ caching = "public, max-age=60";
+ }
}
res.setHeader("Cache-Control", caching);
if (!appleTouchIcon) {
appleTouchIcon = site?.site_view.site.icon
- ? `data:image/png;base64,${sharp(
+ ? `data:image/png;base64,${await sharp(
await fetchIconPng(site.site_view.site.icon)
)
.resize(180, 180)