learner
learner

Reputation: 950

NGINX API Gateway- Does NGINX forwards the to upstream servers

I have a question that in a environment where NGINX is acting as a reverse proxy, then does NGINX forwards or creates a new HTTP request for the upstream server ?

And in case NGINX is configured to perform authentication also, then once the user is authenticated, then in future requests, how NGINX and upstream servers will know that the user is authenticated ?

Upvotes: 0

Views: 258

Answers (1)

Docs CAA
Docs CAA

Reputation: 36

NGINX forwards the request to upstream servers. It modifies two request headers and removes the empty request headers. When the request is forwarded the requested URL is placed in X-Target header. Refer to NGINX-Blog in NGINX.com.

Upvotes: 1

Related Questions