23 lines
581 B
YAML
23 lines
581 B
YAML
|
|
# 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
|