Ingress Nginx在Server片段中使用regex


apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/auth-method: POST
nginx.ingress.kubernetes.io/auth-response-headers: id
nginx.ingress.kubernetes.io/auth-url: http://auth.default.svc.cluster.local:8000/authenticate
nginx.ingress.kubernetes.io/configuration-snippet: error_page 401 /error/401;
error_page 403 /error/403;
nginx.ingress.kubernetes.io/rewrite-target: /$1
nginx.ingress.kubernetes.io/server-snippet: location = /fhir/{
auth_request /auth/; auth_request_set $id $upstream_http_id;
proxy_pass http://pth-auth.default.svc.cluster.local:8000/authenticate; proxy_set_header x-tenant-id $id;
proxy_method POST; error_page 401 /error/401; error_page 403 /error/403;} location = /error/401 { proxy_method
POST; proxy_pass http://auth.default.svc.cluster.local:8000/error/401; }
location = /error/403 { proxy_method POST; proxy_pass http://auth.default.svc.cluster.local:8000/error/403;
} location = /auth/ { proxy_pass http://auth.default.svc.cluster.local:8000/authenticate; proxy_method POST;
proxy_set_header x-original-method $request_method; proxy_set_header x-original-uri $request_uri;}
nginx.ingress.kubernetes.io/use-regex: 'true'
name: ingress-nginx
spec:
rules:
- http:
paths:
- path: /?(.*)
backend:
serviceName: xyz
servicePort: 80

在服务器片段的位置=/fhir/我想匹配任何模式,有/fhir/(.*),但我无法找到任何好的解决方案。

这对我来说很有效位置~* "^/fhir/.*"{你想在这里写什么}这将匹配任何带有fhir前缀的内容。参考这里https://kubernetes.github.io/ingress-nginx/user-guide/ingress-path-matching/

相关内容

  • 没有找到相关文章

最新更新