mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-05 03:10:57 -04:00
another test
This commit is contained in:
parent
b847c0f231
commit
30a4ac6326
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ app.use(express.urlencoded({ extended: true }));
|
||||||
//Logging
|
//Logging
|
||||||
app.use((req, res, next) => {
|
app.use((req, res, next) => {
|
||||||
req.time = new Date(Date.now()).toISOString();
|
req.time = new Date(Date.now()).toISOString();
|
||||||
const clientIp = req.header("cf_connecting_ip") || req.socket.remoteAddress;
|
const clientIp = req.header("cf-connecting-ip") || req.socket.remoteAddress;
|
||||||
console.log(req.time, req.method, req.hostname, req.path, clientIp);
|
console.log(req.time, req.method, req.hostname, req.path, clientIp);
|
||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue