如何解决Ingress Nginx 在服务器片段中使用正则表达式
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
在 location = /fhir/ 的服务器片段中,我想匹配任何具有 /fhir/(.*) 的模式,但我找不到任何好的解决方案。目前它作为完全匹配工作。
解决方法
这对我有用 location ~* "^/fhir/.*" {无论你想在这里写什么} 这将匹配具有前缀 fhir 的任何内容。从这里引用 https://kubernetes.github.io/ingress-nginx/user-guide/ingress-path-matching/
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。