12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ## spring security 配置
- security:
- oauth2:
- client:
- client-id: ENC(ltJPpR50wT0oIY9kfOe1Iw==)
- client-secret: ENC(ltJPpR50wT0oIY9kfOe1Iw==)
- scope: server
- # 默认放行url,子模块重写时application-dev.yml中的公共配置会被覆盖,所以要把公共配置中的放行url再写一次
- ignore-urls:
- - '/actuator/**'
- - '/v2/api-docs'
- - '/user/info/*'
- - '/social/info/*'
- - '/mobile/*'
- - '/log/save'
- # 数据源
- spring:
- datasource:
- type: com.zaxxer.hikari.HikariDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: root
- url: jdbc:mysql://pigx-mysql:3306/pigxx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&allowMultiQueries=true
- # swagger相关配置,覆盖全局配置
- swagger:
- authorization:
- authorization-scope-list:
- - scope: 'server'
- description: 'server all'
- - scope: 'read'
- description: 'read all'
- - scope: 'write'
- description: 'access all'
- # 文件系统
- minio:
- url: http://139.224.200.249:9090
- access-key: lengleng
- secret-key: lengleng
- # Logger Config
- logging:
- level:
- com.pig4cloud.pigx.admin.mapper: debug
|