Why Nginx cannot send the request to the backend?
Situation: I can acccess the http://10.32.19.107:8080/success page using Spring Boot, and I wrote a default.conf for Nginx like this: location /test/ { proxy_pass http://10.32.19.107:8080/success; } Then I restart the Nginx container which is in docker. I entered http://10.32.19.107/test but got…