node-test/app.js

26 lines
616 B
JavaScript
Raw Permalink Normal View History

2022-12-15 10:14:42 +00:00
const express = require('express');
const PORT = 8900;
const HOST = '0.0.0.0';
const instanceNumber = Math.floor(Math.random() * 101);
const app = express();
app.get('/', (req, res) => {
2022-12-24 21:30:32 +00:00
var xFwdIp = req.headers['x-forwarded-for'];
var xRealIp = req.headers['x-real-ip'];
res.send(
{
instanceId: instanceNumber,
xForwardedFor: xFwdIp,
xRealIp: xRealIp,
requestIp: req.ip,
requestTime: Math.floor(Date.now() / 1000)
}
);
2022-12-15 10:14:42 +00:00
});
app.listen(PORT, HOST, () => {
console.log(`Server started on http://${HOST}:${PORT}`);
});