| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- spring:
- application:
- name: file-server
- security:
- user:
- name: admin
- password: select111***
- rabbitmq:
- host: 10.10.100.166
- port: 5672
- virtual-host: school
- username: school
- password: select123***
- zipkin:
- sender:
- type: rabbit
- locator:
- discovery:
- enabled: true
- sleuth:
- sampler:
- probability: 1.0
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://10.10.100.166:3306/smart_campus?characterEncoding=utf-8&useSSL=false
- username: root
- password: select111***
- hikari:
- minimum-idle: 5
- maximum-pool-size: 50
- idle-timeout: 30000
- max-lifetime: 1800000
- connection-timeout: 30000
- messages:
- basename: i18n/messages
- redis:
- host: 10.10.100.166
- port: 6379
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- profiles:
- active: dev
- eureka:
- instance:
- leaseRenewalIntervalInSeconds: 10
- health-check-url-path: /actuator/health
- status-page-url-path: /actuator/info
- prefer-ip-address: true
- metadata-map:
- user.name: ${spring.security.user.name}
- user.password: ${spring.security.user.password}
- client:
- registryFetchIntervalSeconds: 5
- serviceUrl:
- defaultZone: http://${spring.security.user.name}:${spring.security.user.password}@10.1.81.61:8510/eureka/
- server:
- port: 9540
- tomcat:
- uri-encoding: UTF-8
- management:
- endpoints:
- web:
- exposure:
- include: "*"
- endpoint:
- health:
- show-details: always
- shutdown:
- enabled: true
- restart:
- enabled: true
- info:
- name: 'file-server'
- description: 'smartschool-platform'
- version: '1.0.0-SNAPSHOT'
- spring-boot-version: '2.0.4.RELEASE'
- spring-cloud-version: 'Finchley.SR1'
- mybatis:
- type-aliases-package: com.usoftchina.smartschool.file.po
- mapper-locations: classpath:mapper/*.xml
- auth:
- public-key: auth/pub.key
- fdfs:
- so-timeout: 1500
- connect-timeout: 600
- thumb-image:
- width: 150
- height: 150
- tracker-list:
- - 10.1.81.1:22122
- file:
- base-url: http://10.1.81.1:8888/
|