doc:更新文档说明

This commit is contained in:
zyimm 2023-07-09 18:59:57 +08:00
parent f915a23bbd
commit 5519531c06

View File

@ -23,11 +23,14 @@ composer require tm_xls/rocket-mq-client-thinkphp
### 配置
```php
return [
'host' => '', //mq地址
'callback' => '/rocketmq/producer/notify', //回调地址默认不做修改
//订阅节点
'subscribe' => [
'host' => env('mq_host', 'http://192.168.21.170:8085'), //mq地址
'callback_host' => env('mq_callback_host', 'http://192.168.21.170:8085'),//回调host
'callback' => '/rocketmq/producer/notify',//回调地址默认不做修改
'subscribe' => [
]
];