server: port: 8080 spring: aop: proxy-target-class: true datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/db_base_authorization?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 username: root password: yyds@8848 application: name: authorization-server-standalone data: redis: host: localhost port: 6379 password: yyds@8848 lettuce: pool: max-active: 8 # 最大连接数 max-idle: 4 # 最大空闲连接 min-idle: 1 # 最小空闲连接 max-wait: 2000ms # 获取连接最大等待时间 arrokoth: authorization: server: consent-page: /oauth2/consent authorization-endpoint: /oauth2/authorize issuer: https://www.arrokoth-info.com security: web: swagger-ui: false login-page: /login logout-success-url: /login?logout permit-urls: - /home/login logging: level: root: INFO com.arrokoth: DEBUG org.springdoc: INFO org.springframework: INFO org.springframework.security: DEBUG org.springframework.security.oauth2: DEBUG