Mercurial > code > home > repos > pomerium
changeset 12:6c42f94f0285
static site
author | drewp@bigasterisk.com |
---|---|
date | Sun, 25 Dec 2022 11:30:13 -0800 |
parents | 54b0edb7cca8 |
children | 90438c76732f |
files | ingress-static.yaml |
diffstat | 1 files changed, 19 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ingress-static.yaml Sun Dec 25 11:30:13 2022 -0800 @@ -0,0 +1,19 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: static + annotations: + cert-manager.io/issuer: letsencrypt-prod + ingress.pomerium.io/allow_public_unauthenticated_access: "true" + ingress.pomerium.io/pass_identity_headers: "true" + ingress.pomerium.io/preserve_host_header: "true" +spec: + ingressClassName: pomerium + rules: + - host: "williamperttula.com" + http: + paths: + - { pathType: Prefix, path: /, backend: { service: { name: nginx, port: { number: 11444 } } } } + tls: + - hosts: [williamperttula.com] + secretName: williamperttula.com-tls