diff options
author | Minteck <minteck@phoenixnet.tech> | 2021-11-03 18:00:38 +0100 |
---|---|---|
committer | Minteck <minteck@phoenixnet.tech> | 2021-11-03 18:00:38 +0100 |
commit | 9f4bd397f8b6ab4439b1e38ff6ac09355d6b40cc (patch) | |
tree | e60d9a539591eab53dfc8b092ac205bfd16fd9bc /server/http.js | |
parent | 9336979361b60cb258e2f390e2e2b1547caf61b9 (diff) | |
download | rainbow-9f4bd397f8b6ab4439b1e38ff6ac09355d6b40cc.tar.gz rainbow-9f4bd397f8b6ab4439b1e38ff6ac09355d6b40cc.tar.bz2 rainbow-9f4bd397f8b6ab4439b1e38ff6ac09355d6b40cc.zip |
Fix
Diffstat (limited to 'server/http.js')
-rw-r--r-- | server/http.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/http.js b/server/http.js index daae066..4e3a37f 100644 --- a/server/http.js +++ b/server/http.js @@ -14,7 +14,7 @@ module.exports.start = function () { http.createServer(function (req, res) { global.res = res; req.url_orig = req.url; - + console.dir(req.headers); if (req.headers["X-Forwarded-For"]) { global.address = req.headers["X-Forwarded-For"]; } else { |