GitHub user YongXiaoo added a comment to the discussion:
想通过nginx来转发请求,但是MQ的好像不支持带后缀的nginx路由
可以把nginx改成在网络层代理,stream模块代理TCP流量,应该就可以了
GitHub link:
https://github.com/apache/rocketmq/discussions/8308#discussioncomment-10345567
This is an automatically sent email for dev@rocketmq.apache.or
GitHub user YongXiaoo added a comment to the discussion:
想通过nginx来转发请求,但是MQ的好像不支持带后缀的nginx路由
nginx可以改成在stream模块进行流量代理
GitHub link:
https://github.com/apache/rocketmq/discussions/8308#discussioncomment-10345576
This is an automatically sent email for dev@rocketmq.apache.org.
To unsubscri
GitHub user YongXiaoo deleted a comment on the discussion:
想通过nginx来转发请求,但是MQ的好像不支持带后缀的nginx路由
nginx可以改成在stream模块进行流量代理
GitHub link:
https://github.com/apache/rocketmq/discussions/8308#discussioncomment-10345576
This is an automatically sent email for dev@rocketmq.apache.org.
To unsubsc
GitHub user YongXiaoo added a comment to the discussion:
想通过nginx来转发请求,但是MQ的好像不支持带后缀的nginx路由
可以把nginx改成在网络层代理,stream模块代理TCP流量,应该就可以了
GitHub link:
https://github.com/apache/rocketmq/discussions/8308#discussioncomment-10345582
This is an automatically sent email for dev@rocketmq.apache.or
GitHub user YongXiaoo deleted a comment on the discussion:
想通过nginx来转发请求,但是MQ的好像不支持带后缀的nginx路由
可以把nginx改成在网络层代理,stream模块代理TCP流量,应该就可以了
GitHub link:
https://github.com/apache/rocketmq/discussions/8308#discussioncomment-10345567
This is an automatically sent email for dev@rocketmq.apache.
GitHub user frinda closed a discussion: Are there any plans to reverse Acl 2.0
into RocketMQ 4.x?
https://github.com/apache/rocketmq/issues/7560
GitHub link: https://github.com/apache/rocketmq/discussions/8445
This is an automatically sent email for dev@rocketmq.apache.org.
To unsubscrib
GitHub user frinda closed the discussion with a comment: Are there any plans to
reverse Acl 2.0 into RocketMQ 4.x?
https://github.com/apache/rocketmq/issues/8462
GitHub link:
https://github.com/apache/rocketmq/discussions/8445#discussioncomment-10345643
This is an automatically sent ema
GitHub user Tensor-momo added a comment to the discussion:
想通过nginx来转发请求,但是MQ的好像不支持带后缀的nginx路由
是的后面用tcp代理就没问题了
#stream配置
stream {
server {
listen 8080;
proxy_connect_timeout 1s;
proxy_timeout 3s;
proxy_pass xxx.xxx.xxx.xxx:9876;
}
}
GitHub link:
https://git