From the course: Microservices: Security

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

API gateways

API gateways

From the course: Microservices: Security

Start my 1-month free trial

API gateways

- [Instructor] The reverse proxy is another component in our pattern that provides a large set of features In a microservice-based system. A reverse proxy acts as a front end that all traffic to a server or multiple servers passes through. This helps to create a single entry point that hides details of the underlying servers from the client and allows functionality to be centralized in the gateway. In many microservice-based systems, an API gateway platform, which is one type of reverse proxy, is placed at the edge of the microservice deployment, where the traffic enters. To reach the microservices, all traffic must first pass through an API interface located in the gateway. This creates a secure access point into the microservices and shields the clients from any changes made beyond the gateway. As traffic travels through the proxy, it provides the opportunity to introduce security controls into the system.…

Contents