web-gateway.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. ##如果有配置服务的话,远程服务器和本地服务器配置不一致的情况下,优先远程的为主
  2. server:
  3. port: ${server.web-gateway-port}
  4. context-path: ${server.context-path.svr-web-gateway-context-path}
  5. #zuul 默认会代理所有的微服务 路径 /{appliction.name}/**
  6. #zuul:
  7. # ignored-services: '*' ##忽略全部的代理 忽略单个微服务 ignored-services: svr-user 多个逗号分割
  8. # routes:
  9. # svr-user: /user/** ##svr-user方向代理到/user下多层级的路径
  10. # svr-user: 这种方式和 svr-user: /user/** 一样 svr-user可以随便写 唯一即可
  11. # path: /user/** path是代理后的路径
  12. # serviceId: svr-user serviceId是微服务name
  13. # svr-user: 这种方式和 上面一样 就是serviceId改成具体的url 但是这种配置方法不能利用eurika的负载均衡
  14. # path: /user/**
  15. # url: http://localhost:10020/
  16. #svr-user: 这边是微服务ID 配置负载均衡
  17. # ribbon:
  18. # listOfService: http://localhost:10020/,http://localhost:10021/
  19. ---
  20. spring:
  21. profiles: jwdev
  22. zipkin:
  23. base-url: http://localhost:${server.svr-logServer-port} #日志追踪的地址必须 http://开头 不然会报错
  24. sleuth:
  25. sampler:
  26. percentage: 1.0 ##采用需要的请求的百分比 默认是0.1 即 10%
  27. ---
  28. spring:
  29. profiles: jwtest
  30. zipkin:
  31. base-url: http://localhost:${server.svr-logServer-port} #日志追踪的地址
  32. sleuth:
  33. sampler:
  34. percentage: 1.0 ##采用需要的请求的百分比 默认是0.1 即 10%
  35. ---
  36. spring:
  37. profiles: jwprod
  38. zipkin:
  39. base-url: http://localhost:${server.svr-logServer-port} #日志追踪的地址
  40. sleuth:
  41. sampler:
  42. percentage: 1.0 ##采用需要的请求的百分比 默认是0.1 即 10%