a repository that contains microservices config files, this would contains non sensitive informations, but since it is an excercice only, we keep it simple

api-gateway.yml 305B

123456789101112131415161718
  1. spring:
  2. application:
  3. name: api-gateway
  4. cloud:
  5. gateway:
  6. routes:
  7. - id: customer
  8. uri: lb://customer
  9. predicates:
  10. - Path=/customer/**
  11. filters:
  12. - StripPrefix=1
  13. management:
  14. endpoints:
  15. web:
  16. exposure:
  17. include: "*"

Powered by TurnKey Linux.