~/Nginx Proxy Pass Configuration Guide
Mar 9, 2019
To set up a proxy pass with Nginx, update your server config block from your Nginx configuration file. This allows you to route incoming traffic to a backend server.
A typical configuration looks like this
Reload Nginx with
|
|
This config forwards all traffic on example.com
to a backend server on localhost:3000
. Customize the URL as needed.
See official docs for more proxy directives.