Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 660 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 660 Bytes

Build Status

hapi-forwarded-for

hapi.js v19+ plugin: sets request.info.remoteAddress from x-forwarded-for header when proxies are in front of hapi

Installation

npm install --save hapi-forwarded-for

or

yarn add hapi-forwarded-for

Usage

let server = new Hapi.Server();
await server.register({ plugin: require('hapi-forwarded-for') });

server.route({
    method: 'GET',
    path: '/',
    handler: (request, h) => {
        return request.info.remoteAddress;
    }
});

License

MIT