502 Bad Gateway - NGINX no resolver defined to resolve
Asked Answered
I

2

24

I have created a proxy pass for multi URLs.

    listen 80;
    listen [::]:80;

    server_name ~^(.*)redzilla\.11\.75\.65\.21\.xip\.io$;

            location / {
                    set $instname $1;
                    proxy_pass http://${instname}redzilla.localhost:3000;
            }

When I call to this service using chrome, It was triggered 502 error.

http://test.redzilla.11.75.65.21.xip.io/

I put below location tag by hard coding the URL.

            location /redzilla {
                    proxy_pass http://test.redzilla.localhost:3000;
            }

Then It is working for only above URL. I want to know how to create proxy pass for multiple URL within single location tag. ( please note : URL pattern is *.redzilla.localhost:3000 , * ( star ) represent any word)

Itemized answered 14/9, 2019 at 16:11 Comment(7)
You will need to define a resolver statement.Sigismond
Why is a resolver statement needed in this situation (over the normal situation)?Surcease
@Joe: If I’m not too mistaken, it’s because this time nginx really needs to resolve the address: it’s not passed to the browser to do the resolving, but nginx itself fetches the content. Usually, when doing a proxy, you use a unix socket or an ip directly.Unmentionable
I'm stuck on this issue too. Did you ever figure it out?Ricardo
Same issue in a docker containerEadie
Same error in docker. Without using regex match and specifying it statically works well. Solution by snez (adding "resolver 127.0.0.11;") works fine. Seems like some nginx implementation-specifics to me.Nairobi
looks like a nginx bug to me. I created trac.nginx.org/nginx/ticket/2335#ticket let's see what happens ;)Petterson
D
17

If you are using nginx inside docker, define a network, using docker network create .... Containers that are part of that network (through the --network flag on docker run), will have a dns resolver added to them, available via 127.0.0.11.

Then in your server {} directive add "resolver 127.0.0.11;"

Dna answered 31/3, 2021 at 10:18 Comment(1)
In my case, add it to location directive works, but not server directive.Metalliferous
Z
3

If you really need dynamic domain name then you need to use resolver.

However, if you have variables in proxy_pass but NOT in domain name, easiest solution is to define the server using the upstream directive.

See https://nginx.org/en/docs/http/ngx_http_upstream_module.html

Example:

upstream backend {
    server backend.example.com;
}

server {
    location /(?<uri_match_prefix>.*)$ {
        proxy_pass http://backend/$uri_match_prefix$is_args$args;
    }
}
Zimmerman answered 17/3, 2023 at 16:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.