Update index.js
Browse files
index.js
CHANGED
@@ -13,7 +13,7 @@ app.use((req, res, next) => {
|
|
13 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
14 |
|
15 |
let realIP = req.ip;
|
16 |
-
const BlockedIp = [103.187.116.9]
|
17 |
|
18 |
if (xForwardedFor) {
|
19 |
realIP = xForwardedFor.split(',')[0].trim();
|
|
|
13 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
14 |
|
15 |
let realIP = req.ip;
|
16 |
+
const BlockedIp = ["103.187.116.9"];
|
17 |
|
18 |
if (xForwardedFor) {
|
19 |
realIP = xForwardedFor.split(',')[0].trim();
|