@domain.js/main 0.7.1 → 0.7.2
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/dist/http/socket.js +1 -1
- package/package.json +1 -1
package/dist/http/socket.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.BridgeSocket = void 0;
|
|
4
4
|
const basic_errors_1 = require("../basic-errors");
|
|
5
|
-
const proxyIps = new Set(["127.0.0.1"
|
|
5
|
+
const proxyIps = new Set((process.env["PROXY_IPS"] || "127.0.0.1").split(","));
|
|
6
6
|
class MyError extends Error {
|
|
7
7
|
constructor(code, message, data) {
|
|
8
8
|
super(message);
|