change cors origin to intern

This commit is contained in:
Mirco 2023-11-28 11:48:29 +01:00
parent ef0d217cee
commit f42b9d5470

View file

@ -35,7 +35,7 @@ httpServer.listen(port, () => {
}); });
const corsOptions = { const corsOptions = {
origin: 'https://meet.jit.si', origin: ['jitsi.test.meissa.de', 'jitsi.prod.meissa.de'],
methods: ["GET", "POST"], methods: ["GET", "POST"],
credentials: true credentials: true
}; };