I'm newbie with nginx, but I need to create some proxy rules based on the subdomain to redirect to another IP and Port.
This is my case:
My domain.com has IP y.y.y.y and accepts requests on port 80
My subdomains are:
- admin.domain.com -> I need to proxy to x.x.x.x:3434
- user.domain.com -> I need to proxy tox.x.x.x:3435
- vendor.domain.com -> I need to proxy to x.x.x.x:3436
All subdomains are mapped to the y.y.y.y
but in nginx I need to proxy to x.x.x.x:ZZZ
(ZZZ is the specific port of the other services).
I was trying this example but without success: https://rainbow-six3.com/plesknginx/
Someone can provide an sample how to configure this on nginx?