| 1234567891011121314151617181920212223242526272829303132333435363738 | 1、nacos gateway配置文件增加-部署中心路由节点:spring:  cloud:    gateway:        routes:          # 部署中心服务          - id: soc-deploy            uri: lb://soc-deploy            predicates:              - Path=/api/delpoy/**            filters:              - StripPrefix=2           # websocket模块          - id: soc-websocket            uri: lb:ws://soc-mediator            predicates:              - Path=/ws/**          - id: soc-websocket            uri: lb:ws://soc-mediator            predicates:              - Path=/ws1/**2、nacos gateway配置文件增加-部署中心不校验白名单:security:  ignore:     whites:        - /api/deploy/register        - /api/deploy/accesstoken        - /api/deploy/package/download/**        - /api/deploy/agent/download/**        - /api/deploy/frontend/synchronDate        - /api/deploy/heartbeat        - /api/deploy/list        - /api/deploy/report        - /api/deploy/task        - /api/deploy/taskReport        - /ws/**        - /ws1/**
 |