You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
626 B
35 lines
626 B
############################# iot配置 ################################
|
|
spring:
|
|
config:
|
|
activate:
|
|
on-profile: dev #开发环境配置
|
|
iot:
|
|
server:
|
|
proxy:
|
|
start: false
|
|
websocket:
|
|
start: true
|
|
port: 8087
|
|
mqtt:
|
|
default:
|
|
host: broker-cn.emqx.io
|
|
---
|
|
spring:
|
|
config:
|
|
activate:
|
|
on-profile: test #测试环境配置
|
|
iot:
|
|
server:
|
|
proxy:
|
|
start: false
|
|
websocket:
|
|
start: true
|
|
port: 8087
|
|
mqtt:
|
|
default:
|
|
host: broker-cn.emqx.io
|
|
---
|
|
spring:
|
|
config:
|
|
activate:
|
|
on-profile: prod # 正式环境配置
|