X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=server%2Fcontrollers%2Fstatic.ts;h=eece9c06b5103b39728f0db37030f137b97adfe6;hb=54e740594bc2eacd8026b5d2d6cfdfc06416a65b;hp=c7c952d6fcc86b8470debbf02ba02b6af4ff0c4d;hpb=eb08047657e739bcd9e592d76307befa3998482b;p=oweals%2Fpeertube.git diff --git a/server/controllers/static.ts b/server/controllers/static.ts index c7c952d6f..eece9c06b 100644 --- a/server/controllers/static.ts +++ b/server/controllers/static.ts @@ -1,18 +1,13 @@ -import * as express from 'express' import * as cors from 'cors' - -import { - CONFIG, - STATIC_MAX_AGE, - STATIC_PATHS -} from '../initializers' -import { VideosPreviewCache } from '../lib' +import * as express from 'express' +import { CONFIG, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers' +import { VideosPreviewCache } from '../lib/cache' import { asyncMiddleware } from '../middlewares' const staticRouter = express.Router() /* - Cors is very important to let other pods access torrent and video files + Cors is very important to let other servers access torrent and video files */ const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR @@ -37,6 +32,12 @@ staticRouter.use( express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE }) ) +const avatarsPhysicalPath = CONFIG.STORAGE.AVATARS_DIR +staticRouter.use( + STATIC_PATHS.AVATARS, + express.static(avatarsPhysicalPath, { maxAge: STATIC_MAX_AGE }) +) + // Video previews path for express staticRouter.use( STATIC_PATHS.PREVIEWS + ':uuid.jpg',