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.

17 lines
317 B

server:
port: 9999
spring:
application:
name: gateway
cloud:
gateway:
discovery:
locator:
enabled: true
routes:
- id: provider_router
uri: localhost:8080
predicates:
- Path=/provider/**
filters:
- StripPrefix=1