techhero-component-xylink-local.yml 905 Bytes
Newer Older
1
spring:
2 3 4 5 6 7 8 9 10 11 12
  rabbitmq:
    host: dev-env
    port: 5672
    username: techhero
    password: techhero
    virtual-host: /framework
    listener:
      simple:
        acknowledge-mode: manual  # 消息确认方式,其有三种配置方式,分别是none、manual(手动ack) 和auto(自动ack) 默认auto
    publisher-confirms: true #确认消息已发送到交换机(Exchange)
    publisher-returns: true #确认消息已发送到队列(Queue)
13 14 15 16 17 18 19 20 21 22 23 24
  redis:
    database: 10
    host: test-env
    port: 6379
    password: techhero
    timeout: 0
    pool:
      max-active: 8
      max-wait: -1
      max-idle: 8
      min-idle: 0

Administrator committed
25 26 27 28 29 30
xyLink:
  token: 0909d14617eb48fa1a03bc58bcef9435d0a533dc1d4a191d78dc853f7a2d50c1
  enterpriseId: babeb0d578fb9a2b1c3f8374109bbf718ed08199
  appId: BNPNNVVUNVVNT
  oldVideoUrlHttps: http://prdvoddownload.xylink.com
  videoUrlHttps: https://test.techhero.vip:10443
31 32
  
  
33

34

35 36 37



38