171

In order to deal with the microservice architecture, it's often used alongside a Reverse Proxy (such as nginx or apache httpd) and for cross cutting concerns implementation API gateway pattern is used. Sometimes Reverse proxy does the work of API gateway.

It will be good to see clear differences between these two approaches. It looks like the potential benefit of API gateway usage is invoking multiple microservices and aggregating the results. All other responsibilities of API gateway can be implemented using Reverse Proxy. Such as:

  • Authentication (It can be done using nginx LUA scripts);
  • Transport security. It itself Reverse Proxy task;
  • Load balancing
  • ...

So based on this there are several questions:

  1. Does it make sense to use API gateway and Reverse proxy simultaneously (as example request -> API gateway -> reverse proxy(nginx) -> concrete microservice)? In what cases ?
  2. What are the other differences that can be implemented using API gateway and can't be implemented by Reverse proxy and vice versa?
Alex Herman
  • 2,708
  • 4
  • 32
  • 53
user1459144
  • 4,439
  • 5
  • 28
  • 35

7 Answers7

141

It is easier to think about them if you realize they aren't mutually exclusive. Think of an API gateway as a specific type reverse proxy implementation.

In regards to your questions, it is not uncommon to see both used in conjunction where the API gateway is treated as an application tier that sits behind a reverse proxy for load balancing and health checking. An example would be something like a WAF sandwich architecture in that your Web Application Firewall/API Gateway is sandwiched by reverse proxy tiers, one for the WAF itself and the other for the individual microservices it talks to.

Regarding the differences, they are very similar. It's just nomenclature. As you take a basic reverse proxy setup and start bolting on more pieces like authentication, rate limiting, dynamic config updates, and service discovery, people are more likely to call that an API gateway.

Timothy G.
  • 6,335
  • 7
  • 30
  • 46
Justin Talbott
  • 1,618
  • 2
  • 13
  • 8
  • correct me if I'm wrong but I can use both in the same ecosystem. Using an API gateway is more to orchestrate dynamic and constant changes added to dashboard monitoring and security constraints that using a reverse proxy like nginx could be more effective to serve static and fixed sub domains providing load balance for instance. – aelkz Jul 27 '17 at 13:10
  • Probably, the best explanation! I watched numerous tutorials and googled tons of info. – Alex Herman Jan 28 '21 at 21:19
  • 2
    So if I understand correctly, the API gateway is built on top of a reverse proxy and supports more features, so can we not use just the API gateway and remove the proxy? – ColdSpike Apr 09 '21 at 07:05
  • You could have BFF API gateway for ui, for mobile, other... Behind can still sit reverse proxy. – dariol Mar 16 '23 at 16:05
34

I believe, API Gateway is a reverse proxy that can be configured dynamically via API and potentially via UI, while traditional reverse proxy (like Nginx, HAProxy or Apache) is configured via config file and has to be restarted when configuration changes. Thus, API Gateway should be used when routing rules or other configuration often changes. To your questions:

  1. It makes sense as long as every component in this sequence serves its purpose.
  2. Differences are not in feature list but in the way configuration changes applied.

Additionally, API Gateway is often provided in form of SAAS, like Apigee or Tyk for example.

Also, here's my tutorial on how to create a simple API Gateway with Node.js https://memz.co/api-gateway-microservices-docker-node-js/

Hope it helps.

6

API gateway acts as a reverse proxy to accept all application programming interface (API) calls, aggregate the various services required to fulfill them, and return the appropriate result.

An API gateway has a more robust set of features — especially around security and monitoring — than an API proxy. I would say API gateway pattern also called as Backend for frontend (BFF) is widely used in Microservices development. Checkout the article for the benefits and features of API Gateway pattern in Microservice world.

On the other hand API proxy is basically a lightweight API gateway. It includes some basic security and monitoring capabilities. So, if you already have an API and your needs are simple, an API proxy will work fine.

The below image will provide you the clear picture of the difference between API Gateway and Reverse proxy.

enter image description here

Srinivas Ramakrishna
  • 1,294
  • 13
  • 21
3

API Gateways usually operate as a L7 construct.

API Gateways provide additional functionality as compared to a plain reverse proxy. If you consider some of the portals out there they can provide :

  • full API Lifecycle Management including documentation
  • a portal which can be used as the source of truth for various client applications and where you can provide client governance, rate limiting etc.
  • routing to different versions of the API including canary/beta versions
  • detecting usage patterns, register apps, retrieve client credentials etc.

However with the advent of service meshes like Istio, Consul a lot of the functionality of API Gateways will be subsumed by meshes.

pcodex
  • 1,812
  • 15
  • 16
2

From HTTP: The Definitive Guide:

Strictly speaking, proxies connect two or more applications that speak the same protocol, while gateways hook up two or more parties that speak different protocols. A gateway acts as a "protocol converter," allowing a client to complete a transaction with a server, even when the client and server speak different protocols.

In practice, the difference between proxies and gateways is blurry. Because browsers and servers implement different versions of HTTP, proxies often do some amount of protocol conversion. And commercial proxy servers implement gateway functionality to support SSL security protocols, SOCKS firewalls, FTP access, and web-based applications.

Ahmad Ismail
  • 11,636
  • 6
  • 52
  • 87
1

Reverse proxy, such as Nginx and Apache, do not deal with observability, authentication, authorization, service orchestration, etc., but only do load balancing and forward traffic to upstream.

API Gateway is close to the user's business scenario and helps users solve the security and observability issues of various APIs and microservices.

Different positioning leads to different technical aspects of reverse proxy and API gateway. API gateways, such as Apache APISIX, have nearly 100 plugins and support multiple programming languages for plugin development.

If you already have a good API gateway, there is no need to use a reverse proxy.

Ming Wen
  • 41
  • 3
1

Regarding the Andrey Chausenko's answer that

I believe, API Gateway is a reverse proxy that can be configured dynamically via API and potentially via UI, while traditional reverse proxy (like Nginx, HAProxy or Apache) is configured via config file and has to be restarted when configuration changes.

I think it is not true nowadays as modern reverse proxy like Envoy can be dynamically configured by control plane via xDS.

Terry
  • 51
  • 3
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Nov 14 '22 at 12:44