Fix IP determination

This commit is contained in:
Evert Prants 2019-02-28 17:30:11 +02:00
parent 2faffdf8c0
commit 13a6db44a9
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 2 additions and 4 deletions

View File

@ -228,10 +228,8 @@ async function init () {
// Lets begin our trials
// Determine Address from request headers
if (req.header('http_x_forwarded_for')) {
v4 = req.header('http_x_forwarded_for')
} else if (req.header('remote_addr')) {
v4 = req.header('remote_addr')
if (req.header('x-forwarded-for')) {
v4 = req.header('x-forwarded-for')
} else {
v4 = req.connection.remoteAddress
}