nginx reverse proxy - how to serve multiple apps
问题 I am trying to build a reverse proxy with nginx to make all Is in my project reachable from single address. For a single service the configuration below works without problem /etc/nginx/sites-enabled/reverse-proxy.conf server { listen 80; listen [::]:80; location / { resolver 127.0.0.1; allow "x.x.x.x"; deny all; proxy_pass http://consul:8500; } } So when I call server's ip x.x.x.x in my browser I see the Consul UI and the URL showing x.x.x.x/ui/dc1 . Besides that, I see that the UI did