Files
homelab-k3s/apps/tududi/ingress.yaml
T

23 lines
581 B
YAML
Raw Normal View History

2026-08-12 12:46:58 -07:00
# Public hostname plus the origin-* alias traefik matches on when the EC2
# nginx-proxy-manager forwards to origin.wittyoneoff.com:8080.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: tududi
namespace: tududi
spec:
ingressClassName: traefik
rules:
- host: tududi.wittyoneoff.com
http: &backend
paths:
- path: /
pathType: Prefix
backend:
service:
name: tududi
port:
number: 3002
- host: origin-tududi.wittyoneoff.com
http: *backend