Hi~
@rabbitmq
since url including vhost "/" in url will be encoded to "%2F" like /// -> /%2F/ just for http security
but if nginx will decode "%2F" to "/", so if url passes the nginx it will become "///" ,so I counldn‘t proxy_pass it to backend server(tomcat)because applications intentionally reject URIs with an encoded slash (%2F for / and %5C for \) to prevent possible security vulnerabilities.
when I use rabbit-managment i can't operate vhost="/" related queues or exchanges, I just receive a HTTP 400 error ,For the "/" encoding, can change it from %2F to %252F? Or just make some compatibilities!
Wish for your reply Or give me some suggetions
Best regards