application.yml 903 B

1234567891011121314151617181920212223242526272829303132
  1. spring:
  2. security:
  3. oauth2:
  4. authorizationserver:
  5. issuer: http://www.test.com:8080
  6. jackson:
  7. default-property-inclusion: non_null
  8. data:
  9. redis:
  10. url: redis://127.0.0.1:6379
  11. timing:
  12. # 自定义认证配置
  13. security:
  14. # 登录页面路径
  15. login-url: http://www.test.com:5173/login
  16. # 授权确认页面路径
  17. consent-page-uri: http://www.test.com:5173/consent
  18. # 设备码验证页面
  19. device-activate-uri: http://www.test.com:5173/activate
  20. # 设备码验证成功页面
  21. device-activated-uri: http://www.test.com:5173/activated
  22. # 不需要认证的地址
  23. ignore-uri-list: /authentication/**,/oauth2/consent/parameters,/login, /getCaptcha, /getSmsCaptcha, /error, /favicon.ico
  24. # 当前认证服务访问的路径
  25. issuer-url: http://www.test.com:8080
  26. server:
  27. servlet:
  28. session:
  29. cookie:
  30. domain: www.test.com