mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-04 19:10:56 -04:00
feat: add client ip tracking
This commit is contained in:
parent
289b95d957
commit
acc580fb79
1 changed files with 3 additions and 1 deletions
|
@ -17,7 +17,9 @@ app.use(express.urlencoded({ extended: true }));
|
|||
//Logging
|
||||
app.use((req, res, next) => {
|
||||
req.time = new Date(Date.now()).toISOString();
|
||||
console.log(req.time, req.method, req.hostname, req.path);
|
||||
const clientIp =
|
||||
req.header("http_cf_connecting_ip") || req.socket.remoteAddress;
|
||||
console.log(req.time, req.method, req.hostname, req.path, clientIp);
|
||||
next();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue