init
This commit is contained in:
36
src/main/resources/application.yml
Normal file
36
src/main/resources/application.yml
Normal file
@@ -0,0 +1,36 @@
|
||||
server:
|
||||
port: 8080
|
||||
|
||||
|
||||
|
||||
|
||||
spring:
|
||||
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:
|
||||
login-page: /login
|
||||
logout-success-url: /login?logout
|
||||
permit-urls:
|
||||
- /home/login
|
||||
|
||||
|
||||
Reference in New Issue
Block a user