@rpcbase/server 0.163.0 → 0.165.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cli/run_native.js CHANGED
@@ -142,6 +142,7 @@ const init_processes = (args) => {
142
142
  "-E", `path.data=${data_dir}`,
143
143
  "-E", "discovery.type=single-node",
144
144
  "-E", "cluster.initial_master_nodes=''",
145
+ "-E", "xpack.security.enabled=false",
145
146
  "-E", "ingest.geoip.downloader.enabled=false",
146
147
  ]]
147
148
  })
package/express/index.js CHANGED
@@ -51,14 +51,14 @@ module.exports = () => {
51
51
  ] :
52
52
  // local dev origins
53
53
  [
54
- `http://localhost:${CLIENT_PORT}`,
54
+ `http://127.0.0.1:${CLIENT_PORT}`,
55
55
  // `http://192.168.1.83:${CLIENT_PORT}`,
56
56
  // `http://192.168.1.140:${CLIENT_PORT}`,
57
57
  `http://admin.localhost:${CLIENT_PORT}`,
58
58
  // TODO: WARNING: TMP hardcoded port
59
- "http://localhost:8090", // TMP: used by inspected app from admin
60
- "http://localhost:8091", // TMP: used by inspected app from admin
61
- "http://localhost:9292", // TMP
59
+ "http://127.0.0.1:8090", // TMP: used by inspected app from admin
60
+ "http://127.0.0.1:8091", // TMP: used by inspected app from admin
61
+ "http://127.0.0.1:9292", // TMP
62
62
  ]
63
63
 
64
64
  if (APP_DOMAIN) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.163.0",
3
+ "version": "0.165.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {