Remove CSP for embed
This commit is contained in:
parent
3f9c4955af
commit
c3b9379167
|
@ -2,7 +2,7 @@ import * as express from 'express'
|
|||
import { join } from 'path'
|
||||
import { root } from '../helpers/core-utils'
|
||||
import { ACCEPT_HEADERS, STATIC_MAX_AGE } from '../initializers/constants'
|
||||
import { asyncMiddleware, embedCSP } from '../middlewares'
|
||||
import { asyncMiddleware } from '../middlewares'
|
||||
import { buildFileLocale, getCompleteLocale, is18nLocale, LOCALE_FILES } from '../../shared/models/i18n/i18n'
|
||||
import { ClientHtml } from '../lib/client-html'
|
||||
import { logger } from '../helpers/logger'
|
||||
|
@ -21,7 +21,6 @@ clientsRouter.use('/video-channels/:nameWithHost', asyncMiddleware(generateVideo
|
|||
|
||||
clientsRouter.use(
|
||||
'/videos/embed',
|
||||
embedCSP,
|
||||
(req: express.Request, res: express.Response) => {
|
||||
res.removeHeader('X-Frame-Options')
|
||||
res.sendFile(embedPath)
|
||||
|
|
Loading…
Reference in New Issue