1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- ##如果有配置服务的话,远程服务器和本地服务器配置不一致的情况下,优先远程的为主
- server:
- port: ${server.web-gateway-port}
- context-path: ${server.context-path.svr-web-gateway-context-path}
- #zuul 默认会代理所有的微服务 路径 /{appliction.name}/**
- #zuul:
- # ignored-services: '*' ##忽略全部的代理 忽略单个微服务 ignored-services: svr-user 多个逗号分割
- # routes:
- # svr-user: /user/** ##svr-user方向代理到/user下多层级的路径
- # svr-user: 这种方式和 svr-user: /user/** 一样 svr-user可以随便写 唯一即可
- # path: /user/** path是代理后的路径
- # serviceId: svr-user serviceId是微服务name
- # svr-user: 这种方式和 上面一样 就是serviceId改成具体的url 但是这种配置方法不能利用eurika的负载均衡
- # path: /user/**
- # url: http://localhost:10020/
- #svr-user: 这边是微服务ID 配置负载均衡
- # ribbon:
- # listOfService: http://localhost:10020/,http://localhost:10021/
- yihu:
- admin:
- client:
- advice:
- sql: false
- ---
- spring:
- profiles: jwdev
- zipkin:
- base-url: http://localhost:${server.svr-logServer-port} #日志追踪的地址必须 http://开头 不然会报错
- sleuth:
- sampler:
- percentage: 1.0 ##采用需要的请求的百分比 默认是0.1 即 10%
- yihu:
- admin:
- client:
- server:
- ip: 192.168.131.102
- port: 8082
- ---
- spring:
- profiles: jwtest
- zipkin:
- base-url: http://localhost:${server.svr-logServer-port} #日志追踪的地址
- sleuth:
- sampler:
- percentage: 1.0 ##采用需要的请求的百分比 默认是0.1 即 10%
- yihu:
- admin:
- client:
- server:
- ip: 192.168.131.102
- port: 8082
- ---
- spring:
- profiles: jwprod
- zipkin:
- base-url: http://localhost:${server.svr-logServer-port} #日志追踪的地址
- sleuth:
- sampler:
- percentage: 1.0 ##采用需要的请求的百分比 默认是0.1 即 10%
- yihu:
- admin:
- client:
- server:
- ip: 192.168.131.102
- port: 8082
|