mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
fix: prevent CDNs from caching attachments (#562)
This commit is contained in:
parent
f48d6dd60b
commit
2503bfd3a2
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user