23 lines
552 B
YAML
23 lines
552 B
YAML
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} |