1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- server:
- port: 9201
- spring:
- profiles:
- active: dev
- application:
- name: micro-oauth2-gateway
- cloud:
- nacos:
- discovery:
- server-addr: localhost:8848
- gateway:
- routes: #配置路由路径
- - id: oauth2-api-route
- uri: lb://micro-oauth2-api
- predicates:
- - Path=/api/**
- filters:
- - StripPrefix=1
- - id: oauth2-auth-route
- uri: lb://micro-oauth2-auth
- predicates:
- - Path=/auth/**
- filters:
- - StripPrefix=1
- discovery:
- locator:
- enabled: true #开启从注册中心动态创建路由的功能
- lower-case-service-id: true #使用小写服务名,默认是大写
- security:
- oauth2:
- resourceserver:
- jwt:
- jwk-set-uri: 'http://localhost:9401/rsa/publicKey' #配置RSA的公钥访问地址
- redis:
- database: 0
- port: 6379
- host: localhost
- password: 123456
- secure:
- ignore:
- urls: #配置白名单路径
- - "/actuator/**"
- - "/auth/oauth/token"
|