管理页面设置
quickmsg
# main启动参数详解
BootstrapConfig
.HttpConfig
.builder()
.enable(true)
.accessLog(true)
.admin(BootstrapConfig.HttpAdmin.builder().enable(true).username("smqtt").password("smqtt").build())
.build()
1
2
3
4
5
6
7
2
3
4
5
6
7
# yml配置
smqtt:
logLevel: DEBUG # 系统日志
http: # http相关配置 端口固定60000
enable: true # 开关
accessLog: true # http访问日志
ssl: # ssl配置
enable: false
admin: # 后台管理配置
enable: true # 开关
username: smqtt # 访问用户名
password: smqtt # 访问密码
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11