location /mq {
proxy_pass http://127.0.0.1:15672/api/exchanges/vhost/exchange/publish;
proxy_set_header Authorization "Basic Z3Vlc3Q6Z3Vlc3Q";
}
代理配置如上所示, /mq 返回 400
nginx 错误日志: OpenEvent("ngx_master_10400") failed (2: The system cannot find the file specified)
url 直接发送是成功的, 验证貌似也报错, 不知道哪里还需要什么配置吗?
1
hongzz 2019-12-06 09:27:47 +08:00
my 应该是 tcp 吧
|
2
aaa5838769 2019-12-06 10:25:56 +08:00
楼上正解,应该走的是 tcp 协议吧,你用 stream 模块试试 http://nginx.org/en/docs/stream/ngx_stream_core_module.html
|
3
julyclyde 2019-12-06 10:42:10 +08:00
上面两位是不是不知道 rabbitmq 有 http 服务?
|
4
aoscici2000 OP @aaa5838769 http 也是没问题的, 直接走 http://guest:[email protected]:15672/xxxx 是可以正常进入到队列里去的
|