X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server.ts;h=dd595e9512303e22a6f6e5fb4fcf1f5c0d0f5df2;hb=1e0569b738c738013353aa169d2086bf6677ffd8;hp=a29b5e408f5e6c2aa066ee31a19a70acbe97827b;hpb=9d4c60dccc8e7e777ad139a82e9f61feda9d21fc;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server.ts b/server.ts index a29b5e408..dd595e951 100644 --- a/server.ts +++ b/server.ts @@ -107,6 +107,7 @@ import { wellKnownRouter, lazyStaticRouter, servicesRouter, + objectStorageProxyRouter, pluginsRouter, webfingerRouter, trackerRouter, @@ -240,6 +241,7 @@ app.use('/', wellKnownRouter) app.use('/', miscRouter) app.use('/', downloadRouter) app.use('/', lazyStaticRouter) +app.use('/', objectStorageProxyRouter) // Client files, last valid routes! const cliOptions = cli.opts<{ client: boolean, plugins: boolean }>()