Consider, the following expressjs app:
var express = require('express');
var http = require('http');
var httpApp = express();
httpApp.configure(function() {
httpApp.use(express.static(__dirname + '/static/'));
});
var server = http.createServer(httpApp).listen(4444);
now,
i want this server not to be available publically & ONLY to respond to requests from specific clients based on their IP address/domain. Everybody else should get 403 - Forbidden
error.
I searched the API Doc & found way to do this to first enable trust proxy by app.enable('trust proxy')
& then check req.ip
.
However, I can't I access req
object. so if anyone take this code & can show me how deny a req based on its IP/domain, that would be super-helpful