http请求状态码 http状态返回代码 1xx(临时响应) 表示临时响应并需要请求者继续执行操作的状态代码。
const express = require("express"); const app = express(); const Gun = require("gun"); const port = 5000; app.use(Gun.serve); const server = app.listen(port, () => { console.log(`Server running on port ${port}🔥`); }); Gun({ web: server });...
Now I'm not sure what to do because the ports are open, and the communication appears open, but Consul doesn't want to communicate. Am I missing a port? Also, if I navigate to the UI on any other consul server in the cluster, it doesn't see the new datacenters? I thought the ...