Fix phoenix sockets in dev mode

phoenix requires the Origin header to be set to the actual address,
so "http://localhost:xxxx" will not work.
This commit is contained in:
Tusooa Zhu 2022-04-06 18:50:33 -04:00
parent 0e56ac1c2b
commit 741a59e0cc
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
1 changed files with 4 additions and 1 deletions

View File

@ -52,7 +52,10 @@ module.exports = {
target,
changeOrigin: true,
cookieDomainRewrite: 'localhost',
ws: true
ws: true,
headers: {
'Origin': target
}
},
'/oauth/revoke': {
target,