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.
174 lines
4.9 KiB
174 lines
4.9 KiB
5 months ago
|
server:
|
||
|
port: 6789
|
||
|
spring:
|
||
|
main:
|
||
|
allow-bean-definition-overriding: true
|
||
|
application:
|
||
|
name: cloud-api-sample
|
||
|
datasource:
|
||
|
druid:
|
||
|
type: com.alibaba.druid.pool.DruidDataSource
|
||
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||
|
url: jdbc:mysql://127.0.0.1:3307/cloud_sample?useSSL=false&allowPublicKeyRetrieval=true
|
||
|
username: root
|
||
|
password: 123456
|
||
|
initial-size: 10
|
||
|
min-idle: 10
|
||
|
max-active: 20
|
||
|
max-wait: 60000
|
||
|
|
||
|
redis:
|
||
|
host: 127.0.0.1
|
||
|
port: 6379
|
||
|
database: 5
|
||
|
username: # if you enable
|
||
|
password: 123456
|
||
|
lettuce:
|
||
|
pool:
|
||
|
max-active: 8
|
||
|
max-idle: 8
|
||
|
min-idle: 0
|
||
|
|
||
|
servlet:
|
||
|
multipart:
|
||
|
max-file-size: 2GB
|
||
|
max-request-size: 2GB
|
||
|
|
||
|
jwt:
|
||
|
issuer: DJI
|
||
|
subject: CloudApiSample
|
||
|
secret: CloudApiSample
|
||
|
age: 86400
|
||
|
|
||
|
mqtt:
|
||
|
# @see com.dji.sample.component.mqtt.model.MqttUseEnum
|
||
|
# BASIC parameters are required.
|
||
|
BASIC:
|
||
|
protocol: MQTT # @see com.dji.sample.component.mqtt.model.MqttProtocolEnum
|
||
|
host: 114.235.183.162
|
||
|
port: 1883
|
||
|
username: adminPCBASIC
|
||
|
password: yongqiang666
|
||
|
client-id: gengbao1
|
||
|
# If the protocol is ws/wss, this value is required.
|
||
|
path:
|
||
|
DRC:
|
||
|
protocol: WS # @see com.dji.sample.component.mqtt.model.MqttProtocolEnum
|
||
|
host: 114.235.183.162
|
||
|
port: 8083
|
||
|
path: /mqtt
|
||
|
username: adminPCDRC
|
||
|
password: yongqiang666
|
||
|
|
||
|
cloud-sdk:
|
||
|
mqtt:
|
||
|
# Topics that need to be subscribed when initially connecting to mqtt, multiple topics are divided by ",".
|
||
|
inbound-topic: sys/product/+/status,thing/product/+/requests
|
||
|
|
||
|
url:
|
||
|
manage:
|
||
|
prefix: manage
|
||
|
version: /api/v1
|
||
|
map:
|
||
|
prefix: map
|
||
|
version: /api/v1
|
||
|
media:
|
||
|
prefix: media
|
||
|
version: /api/v1
|
||
|
wayline:
|
||
|
prefix: wayline
|
||
|
version: /api/v1
|
||
|
storage:
|
||
|
prefix: storage
|
||
|
version: /api/v1
|
||
|
control:
|
||
|
prefix: control
|
||
|
version: /api/v1
|
||
|
|
||
|
# Tutorial: https://www.alibabacloud.com/help/en/object-storage-service/latest/use-a-temporary-credential-provided-by-sts-to-access-oss
|
||
|
#oss:
|
||
|
# enable: true
|
||
|
# provider: ALIYUN # @see com.dji.sample.component.OssConfiguration.model.enums.OssTypeEnum
|
||
|
# endpoint: http://oss-cn-hangzhou.aliyuncs.com
|
||
|
# access-key: LTAI5tMDFvYZRvrJfK7HeuEm
|
||
|
# secret-key: kP7ueRlhLbM9mvkaLtHfcje3GxgawH
|
||
|
# expire: 3600
|
||
|
# region: oss-cn-hangzhou # cn-hangzhou
|
||
|
# role-session-name: ossRam
|
||
|
# role-arn: acs:ram::1454407249617199:role/ossram # acs:ram::123456789:role/stsrole
|
||
|
# bucket: yq-dajiang
|
||
|
# object-dir-prefix: goucong
|
||
|
|
||
|
#oss:
|
||
|
# enable: true
|
||
|
# provider: aws
|
||
|
# endpoint: http://eos-wuxi-1.cmecloud.cn
|
||
|
# access-key: LHJPESZYDZ3ZMC79SZ6V
|
||
|
# secret-key: DnIBjpaBotuO9TD0izb9GbyLFt5jf2F3VQqOje5f
|
||
|
# expire: 3600
|
||
|
# region: eos-wuxi-1
|
||
|
# role-session-name: goucong
|
||
|
# role-arn: arn:aws:s3:::dikongtyx/goucong
|
||
|
# bucket: dikongtyx
|
||
|
# object-dir-prefix: goucong
|
||
|
|
||
|
oss:
|
||
|
enable: true
|
||
|
provider: MINIO
|
||
|
endpoint: http://eos-wuxi-1.cmecloud.cn
|
||
|
access-key: B4E9TC3WUV2DAXZ4P625
|
||
|
secret-key: Px3VINH6TghgSg11gX5Z59AxxxASB8y9tEsNACNh
|
||
|
bucket: dikongtyx
|
||
|
expire: 3600
|
||
|
region: wuxi1
|
||
|
object-dir-prefix: goucong
|
||
|
|
||
|
|
||
|
|
||
|
logging:
|
||
|
level:
|
||
|
com.dji: debug
|
||
|
file:
|
||
|
name: logs/cloud-api-sample.log
|
||
|
|
||
|
ntp:
|
||
|
server:
|
||
|
host: ntp.aliyun.com
|
||
|
|
||
|
# To create a license for an application: https://developer.dji.com/user/apps/#all
|
||
|
cloud-api:
|
||
|
app:
|
||
|
id: 125297
|
||
|
key: 182ae1ca69d9ba5103c0148bf16d68b
|
||
|
license: FixRisR747uGMZwaNbgCAWZojgrcUgZB1qhRyMTtptyKPKI/uETVwMK41HikhP+wbCjSKODdaQH4JIGAvzxdN/4HMrsEj3srLyGXi+BeJyFNyi94mpprv1Cx59fknCrBexAxLoc3f9GcgojEWrB0wCYxGp7l8mulwSDMP5yl++w=
|
||
|
|
||
|
livestream:
|
||
|
url:
|
||
|
# It is recommended to use a program to create Token. https://github.com/AgoraIO/Tools/blob/master/DynamicKey/AgoraDynamicKey/java/src/main/java/io/agora/media/RtcTokenBuilder2.java
|
||
|
agora:
|
||
|
channel: cloud
|
||
|
token: 007eJxTYBBinhSg416uaGdw6G9J4bSDxYZ/mTm5HErajtq2+j09r6bAYGpinGKUkphokmYMxBZJiebJqWYGaanJyUnG5haGyda/RNMaAhkZNp5YxcrIAIEgPitDck5+aQoDAwC1CB6R
|
||
|
uid: 65432
|
||
|
|
||
|
# RTMP Note: This IP is the address of the streaming server. If you want to see livestream on web page, you need to convert the RTMP stream to WebRTC stream.
|
||
|
rtmp:
|
||
|
url: rtmp://114.235.183.163/live/livesteam/ # Example: 'rtmp://192.168.1.1/live/'
|
||
|
rtsp:
|
||
|
username: Please enter the username.
|
||
|
password: Please enter the password.
|
||
|
port: 8554
|
||
|
|
||
|
# GB28181 Note:If you don't know what these parameters mean, you can go to Pilot2 and select the GB28181 page in the cloud platform. Where the parameters same as these parameters.
|
||
|
gb28181:
|
||
|
serverIP: Please enter the server ip.
|
||
|
serverPort: 7788
|
||
|
serverID: Please enter the server id.
|
||
|
agentID: Please enter the agent id.
|
||
|
agentPassword: Please enter the agent password.
|
||
|
localPort: 7788
|
||
|
channel: Please enter the channel.
|
||
|
|
||
|
# Webrtc: Only supports using whip standard
|
||
|
whip:
|
||
|
url: http://114.235.183.163:1985/rtc/v1/whip/?app=live/livesteam&stream= # Example:http://192.168.1.1:1985/rtc/v1/whip/?app=live&stream=
|