diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-02 17:15:24 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-06-02 17:15:24 +0200 |
commit | 78646451c9896db3c2239270cd7e100305749f41 (patch) | |
tree | 28bc1da00408c7c5c1b4bf8b42c932dcdc4d0ff8 /server/controllers | |
parent | 35b30b643cf9870b0934f34253ffb23cf6a264b0 (diff) | |
download | PeerTube-78646451c9896db3c2239270cd7e100305749f41.tar.gz PeerTube-78646451c9896db3c2239270cd7e100305749f41.tar.zst PeerTube-78646451c9896db3c2239270cd7e100305749f41.zip |
Don't cache embed HTML file
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/client.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/controllers/client.ts b/server/controllers/client.ts index 08c0f1fa6..65b5a053c 100644 --- a/server/controllers/client.ts +++ b/server/controllers/client.ts | |||
@@ -29,7 +29,8 @@ clientsRouter.use( | |||
29 | embedCSPMiddleware, | 29 | embedCSPMiddleware, |
30 | (req: express.Request, res: express.Response) => { | 30 | (req: express.Request, res: express.Response) => { |
31 | res.removeHeader('X-Frame-Options') | 31 | res.removeHeader('X-Frame-Options') |
32 | res.sendFile(embedPath) | 32 | // Don't cache HTML file since it's an index to the immutable JS/CSS files |
33 | res.sendFile(embedPath, { maxAge: 0 }) | ||
33 | } | 34 | } |
34 | ) | 35 | ) |
35 | clientsRouter.use( | 36 | clientsRouter.use( |