0

我正在使用 .env 文件来读取所有配置,现在我想从consul运行时读取我的所有配置。

const consulServer = consul({
    host: 'my-host',
    port:123,
})
consulServer.kv.get('url', (err: any, response: { Value: any }) => {
    if (!err && response.Value) {
        console.log(response.Value)
    } else {
        console.log('Failed to load consul configuration', err)
    }
})

我正在运行 CONSUl 并在本地的不同端口上对应用程序做出反应,但是在阅读领事时cors出现错误

非常感谢这里的任何帮助

4

1 回答 1

0

http_config.response_headers您可以在 Consul 的配置选项下为 CORS 配置服务器端 HTTP 标头。

盐酸

http_config {
  response_headers {
    Access-Control-Allow-Origin = "*"
  }
}

JSON

{
  "http_config": {
    "response_headers": {
      "Access-Control-Allow-Origin": "*"
    }
  }
}
于 2021-01-29T15:30:45.970 回答