24 lines
638 B
YAML
24 lines
638 B
YAML
|
|
# Both hostnames point at the same backend: the public one used by the EC2
|
||
|
|
# nginx-proxy-manager, and the origin-* alias traefik matches on when NPM
|
||
|
|
# forwards to origin.wittyoneoff.com:8080.
|
||
|
|
apiVersion: networking.k8s.io/v1
|
||
|
|
kind: Ingress
|
||
|
|
metadata:
|
||
|
|
name: dashwise
|
||
|
|
namespace: dashwise
|
||
|
|
spec:
|
||
|
|
ingressClassName: traefik
|
||
|
|
rules:
|
||
|
|
- host: home.wittyoneoff.com
|
||
|
|
http: &backend
|
||
|
|
paths:
|
||
|
|
- path: /
|
||
|
|
pathType: Prefix
|
||
|
|
backend:
|
||
|
|
service:
|
||
|
|
name: dashwise
|
||
|
|
port:
|
||
|
|
number: 3000
|
||
|
|
- host: origin-home.wittyoneoff.com
|
||
|
|
http: *backend
|