Remove cors configuration
This commit is contained in:
parent
832127d5c8
commit
c4c5a507c2
|
@ -51,8 +51,6 @@ services:
|
|||
INTERNAL_API_KEY: ${INTERNAL_API_KEY}
|
||||
REDIS_URL: redis-service:6379
|
||||
REDIS_PASSWORD: ${REDIS_PASSWORD}
|
||||
CORS_ORIGIN: ${CORS_ORIGIN}
|
||||
CORS_CREDENTIALS: ${CORS_CREDENTIALS}
|
||||
volumes:
|
||||
- ./logs:/logs
|
||||
depends_on:
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
"joi": "^17.4.0",
|
||||
"koa": "^2.7.0",
|
||||
"koa-body": "^4.2.0",
|
||||
"@koa/cors": "^3.1.0",
|
||||
"koa-compress": "^4.0.1",
|
||||
"koa-passport": "^4.1.4",
|
||||
"koa-pino-logger": "^3.0.0",
|
||||
|
|
|
@ -21,9 +21,6 @@ async function init() {
|
|||
COUCH_DB_PASSWORD: "budibase",
|
||||
// empty string is false
|
||||
MULTI_TENANCY: "",
|
||||
// account portal cors configuration
|
||||
CORS_ORIGIN: "http://localhost:3001",
|
||||
CORS_CREDENTIALS: true,
|
||||
}
|
||||
let envFile = ""
|
||||
Object.keys(envFileJson).forEach(key => {
|
||||
|
|
|
@ -33,8 +33,6 @@ module.exports = {
|
|||
INTERNAL_API_KEY: process.env.INTERNAL_API_KEY,
|
||||
MULTI_TENANCY: process.env.MULTI_TENANCY,
|
||||
SANDBOX: process.env.SANDBOX,
|
||||
CORS_ORIGIN: process.env.CORS_ORIGIN,
|
||||
CORS_CREDENTIALS: process.env.CORS_CREDENTIALS,
|
||||
_set(key, value) {
|
||||
process.env[key] = value
|
||||
module.exports[key] = value
|
||||
|
|
|
@ -6,7 +6,6 @@ const Koa = require("koa")
|
|||
const destroyable = require("server-destroy")
|
||||
const koaBody = require("koa-body")
|
||||
const koaSession = require("koa-session")
|
||||
const cors = require("@koa/cors")
|
||||
const { passport } = require("@budibase/auth").auth
|
||||
const logger = require("koa-pino-logger")
|
||||
const http = require("http")
|
||||
|
@ -15,16 +14,6 @@ const redis = require("./utilities/redis")
|
|||
|
||||
const app = new Koa()
|
||||
|
||||
// TODO: Remove this when using envoy / nginx
|
||||
if (env.CORS_ORIGIN) {
|
||||
const corsConfig = {
|
||||
origin: env.CORS_ORIGIN,
|
||||
credentials: !!env.CORS_CREDENTIALS,
|
||||
}
|
||||
|
||||
app.use(cors(corsConfig))
|
||||
}
|
||||
|
||||
app.keys = ["secret", "key"]
|
||||
|
||||
// set up top level koa middleware
|
||||
|
|
Loading…
Reference in New Issue