Commit 7371db4674c128e73223fdffb8a783c6b05672c2
1 parent
6ac131bc
修复一处错误,application.yml media.stream-ip的值应该等于media.ip而不是之前的sip.ip
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/resources/application-docker.yml
| ... | ... | @@ -67,8 +67,8 @@ media: |
| 67 | 67 | send-port-range: 30000,30500 # 端口范围 |
| 68 | 68 | # 录像辅助服务, 部署此服务可以实现zlm录像的管理与下载, 0 表示不使用 |
| 69 | 69 | record-assist-port: 18081 |
| 70 | - sdp-ip: ${media.ip} | |
| 71 | - stream-ip: ${sip.ip} | |
| 70 | + sdp-ip: ${sip.ip} | |
| 71 | + stream-ip: ${media.ip} | |
| 72 | 72 | # [可选] 日志配置, 一般不需要改 |
| 73 | 73 | logging: |
| 74 | 74 | file: | ... | ... |