fix: prevent CDNs from caching attachments (#562)

This commit is contained in:
Philip Okugbe 2024-12-14 19:55:49 +00:00 committed by GitHub
parent f48d6dd60b
commit 2503bfd3a2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -178,7 +178,7 @@ export class AttachmentController {
const fileStream = await this.storageService.read(attachment.filePath);
res.headers({
'Content-Type': attachment.mimeType,
'Cache-Control': 'public, max-age=3600',
'Cache-Control': 'private, max-age=3600',
});
if (!inlineFileExtensions.includes(attachment.fileExt)) {
@ -299,7 +299,7 @@ export class AttachmentController {
const fileStream = await this.storageService.read(filePath);
res.headers({
'Content-Type': getMimeType(filePath),
'Cache-Control': 'public, max-age=86400',
'Cache-Control': 'private, max-age=86400',
});
return res.send(fileStream);
} catch (err) {