1234567891011121314151617181920212223242526272829303132 |
- spring:
- security:
- oauth2:
- authorizationserver:
- issuer: http://www.test.com:8080
- jackson:
- default-property-inclusion: non_null
- data:
- redis:
- url: redis://127.0.0.1:6379
- timing:
- # 自定义认证配置
- security:
- # 登录页面路径
- login-url: http://www.test.com:5173/login
- # 授权确认页面路径
- consent-page-uri: http://www.test.com:5173/consent
- # 设备码验证页面
- device-activate-uri: http://www.test.com:5173/activate
- # 设备码验证成功页面
- device-activated-uri: http://www.test.com:5173/activated
- # 不需要认证的地址
- ignore-uri-list: /authentication/**,/oauth2/consent/parameters,/login, /getCaptcha, /getSmsCaptcha, /error, /favicon.ico
- # 当前认证服务访问的路径
- issuer-url: http://www.test.com:8080
- server:
- servlet:
- session:
- cookie:
- domain: www.test.com
|