Istio通过其配置资源VirtualService
的corsPolicy
属性来处理跨域请求,允许您定义哪些源(Origin)可以访问您的服务,从而解决跨域问题。以下是Istio处理跨域请求的详细步骤:
配置VirtualService:通过配置VirtualService
的corsPolicy
属性,您可以允许特定的源地址访问您的服务。例如,如果您想允许https://nginx.example.com
和https://test.example.com
的请求,您可以这样配置:
apiVersion: networking.istio.io/v1beta1
kind: VirtualService
metadata:
name: nginx
namespace: istio-demo
spec:
gateways:
- istio-demo/nginx-gateway
hosts:
- 'nginx.example.com'
- 'test.example.com'
http:
corsPolicy:
allowOrigins:
- regex: "https?://nginx.example.com|https?://test.example.com"
route:
- destination:
host: nginx.istio-demo.svc.cluster.local
port:
number: 80
CORS策略的核心:控制请求能否跨域的逻辑核心在于浏览器。浏览器通过检查响应中的access-control-allow-origin
头来判断请求是否被允许跨域。如果请求的Origin
与access-control-allow-origin
头中指定的源匹配,则请求被允许跨域。
Origin
或没有Origin
头,响应内容也可能正常返回。这是因为CORS策略的核心在于浏览器端,而不是服务端。如果跨域校验失败,Istio不会在响应中包含access-control-allow-origin
头来告知浏览器,但响应体本身是正常的。通过上述配置,Istio能够有效地处理跨域请求,使得您的服务能够安全地接受来自不同源的HTTP请求。