Skip to content

Commit

Permalink
feat: Make CORS origin work with regex
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Apr 15, 2024
1 parent 4b8825a commit 3ca62b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.defaults
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CORS_ORIGIN=*
CORS_ORIGIN=^http:\/\/localhost:[0-9]{1,10}$
CORS_METHOD=*
MARKETPLACE_SUBGRAPH_URL=https://api.thegraph.com/subgraphs/name/decentraland/marketplace
COLLECTIONS_SUBGRAPH_URL=https://api.thegraph.com/subgraphs/name/decentraland/collections-matic-mainnet
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,9 @@ async function initComponents(): Promise<AppComponents> {
}

const cors = {
origin: await config.getString('CORS_ORIGIN'),
origin: (await config.requireString('CORS_ORIGIN'))
.split(';')
.map((origin) => new RegExp(origin)),
methods: await config.getString('CORS_METHOD'),
}

Expand Down

0 comments on commit 3ca62b6

Please sign in to comment.