Process Flow - proxy_pass directive
Client sends HTTP request
Nginx receives request
Check location block with proxy_pass
Rewrite request URL if needed
Forward request to backend server
Backend server processes request
Backend sends response to Nginx
Nginx sends response back to client
The proxy_pass directive tells Nginx to forward client requests to another server and then return the response back to the client.