nginx proxy_pass 404 error, don’t understand why

This

location /api {
    proxy_pass http://backend;
}

Needs to be this

location /api/ {
    proxy_pass http://backend/;
}

Leave a Comment