Files

24 lines
638 B
YAML
Raw Permalink Normal View History

2026-08-12 12:46:58 -07:00
# 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