You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- server:
- port: 8090
- spring:
- application:
- name: spring-cloud-gateway
- cloud:
- gateway:
- enabled: true
- discovery:
- locator:
- lower-case-service-id: true
- routes:
- # Add your routes here.
- - id: aliyun_route
- uri: https://www.aliyun.com/
- predicates:
- - Path=/product/**
- - id: httpbin_route
- uri: https://httpbin.org
- predicates:
- - Path=/httpbin/**
- filters:
- - RewritePath=/httpbin/(?<segment>.*), /$\{segment}
|