简体   繁体   中英

Http Filter in Node.js

I want to filter http requests and allow only calls from certain domains which I'm interested in. Is it possible to do it as part of App Configuration? - Any libraries available for this?

req.connection.remoteAddress will have the IP address of the system making the request; you can do a reverse DNS lookup on it and match against the returned domains. If you're using express or connect you can write a middleware function to do this.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM