系统相关
首页 > 系统相关> > ingress-nginx配置多host指向相同后端

ingress-nginx配置多host指向相同后端

作者:互联网

有时我们的需求是多个域名指向同个后端服务,那ingress-nginx该怎么配置,很简单如下:

spec:
  rules:
  - host: foobar.com
    http: &http_rules
      paths:
      - backend:
          serviceName: foobar
          servicePort: 80
  - host: api.foobar.com
    http: *http_rules
  - host: admin.foobar.com
    http: *http_rules
  - host: status.foobar.com
    http: *http_rules

 

标签:ingress,http,rules,foobar,nginx,host,com
来源: https://www.cnblogs.com/Dev0ps/p/13690257.html