我正在使用traefik 2.0,其中我在ingressrouter中使用了ingressrouter,我定义了2条规则,例如
"- kind: Rule match: Host(abc.example.com) services: - name: service-1 port: 80 kind: Rule match: Host(abc.example.com) && PathPrefix(/abcd) services: name: service2 port: 8080"
据此,如果对abc.example.com/abcd的任何请求进入service2,其余的进入srevice1,它们工作得很好,但是当service2荚不可用时,则对abc.example.com/abcd的请求被转移到预期的abc.example.com。是否有给出502或503或404或任何错误请求的解决方案?