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.
shigusegubu
Tusooa Zhu 2 years ago
parent 0e56ac1c2b
commit 741a59e0cc
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
  1. 5
      config/index.js

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

Loading…
Cancel
Save