fix: disable cors

pull/3770/head
NGPixel 3 years ago
parent 05aad5b9c6
commit c57c9d9018

@ -130,7 +130,7 @@ module.exports = {
path: '/graphql-subscriptions' path: '/graphql-subscriptions'
} }
}) })
this.servers.graph.applyMiddleware({ app: WIKI.app }) this.servers.graph.applyMiddleware({ app: WIKI.app, cors: false })
}, },
/** /**
* Close all active connections * Close all active connections

@ -42,8 +42,8 @@ module.exports = async () => {
// ---------------------------------------- // ----------------------------------------
app.use(mw.security) app.use(mw.security)
app.use(cors(WIKI.config.cors)) app.use(cors({ origin: false }))
app.options('*', cors(WIKI.config.cors)) app.options('*', cors({ origin: false }))
if (WIKI.config.security.securityTrustProxy) { if (WIKI.config.security.securityTrustProxy) {
app.enable('trust proxy') app.enable('trust proxy')
} }

Loading…
Cancel
Save