Update index.js
Browse files
index.js
CHANGED
@@ -39,7 +39,7 @@ app.get('/', (req, res) => {
|
|
39 |
res.redirect('https://t.me/RendyProjects');
|
40 |
});
|
41 |
|
42 |
-
app.use((req, res, next) => {
|
43 |
const xForwardedFor = req.headers['x-forwarded-for'];
|
44 |
const xRealIP = req.headers['x-real-ip'];
|
45 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|
|
|
39 |
res.redirect('https://t.me/RendyProjects');
|
40 |
});
|
41 |
|
42 |
+
app.use(async (req, res, next) => {
|
43 |
const xForwardedFor = req.headers['x-forwarded-for'];
|
44 |
const xRealIP = req.headers['x-real-ip'];
|
45 |
const cfConnectingIP = req.headers['cf-connecting-ip'];
|