123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- server:
- port: 5002
- spring:
- application:
- name: pigx-activiti
- #配置中心
- cloud:
- config:
- fail-fast: true
- name: ${spring.application.name}
- profile: dev
- discovery:
- enabled: true
- service-id: pigx-config
- datasource:
- url: jdbc:mysql://114.116.21.191:3306/ac?characterEncoding=UTF-8&useSSL=false
- username: root
- password: Bjyjht2017!@#
- driver-class-name: com.mysql.jdbc.Driver
- activiti:
- check-process-definitions: false
- # 注册中心配置
- eureka:
- instance:
- prefer-ip-address: true
- client:
- service-url:
- defaultZone: http://pig:pig@192.168.0.20:1025/eureka/
- ## spring security 配置
- security:
- oauth2:
- client:
- client-id: ENC(gPFcUOmJm8WqM3k3eSqS0Q==)
- client-secret: ENC(gPFcUOmJm8WqM3k3eSqS0Q==)
- scope: server
- resource:
- token-info-uri: ${security.auth.server}/check_token
- auth:
- server: http://192.168.0.20:9999/auth/oauth
- # 加解密根密码
- jasypt:
- encryptor:
- password: pigx #根密码
- # redis 相关
|