72 lines
1.6 KiB
YAML
72 lines
1.6 KiB
YAML
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
annotations:
|
|
# redirection is handled at upper haproxy layer
|
|
ingress.kubernetes.io/ssl-redirect: "false"
|
|
name: haproxy-ingress
|
|
namespace: pew
|
|
spec:
|
|
rules:
|
|
- host: seaturtle.pw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: "Exact"
|
|
backend:
|
|
service:
|
|
name: nginx
|
|
port:
|
|
number: 80
|
|
- host: paul.walko.org
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: "Exact"
|
|
backend:
|
|
service:
|
|
name: nginx
|
|
port:
|
|
number: 80
|
|
- host: airsonic.seaturtle.pw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: "Exact"
|
|
backend:
|
|
service:
|
|
name: airsonic
|
|
port:
|
|
number: 4040
|
|
- host: git.seaturtle.pw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: "Exact"
|
|
backend:
|
|
service:
|
|
name: gitea
|
|
port:
|
|
number: 3000
|
|
- host: nc.seaturtle.pw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: "Exact"
|
|
backend:
|
|
service:
|
|
name: nextcloud
|
|
port:
|
|
number: 80
|
|
- host: plex.seaturtle.pw
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: "Exact"
|
|
backend:
|
|
service:
|
|
name: plex
|
|
port:
|
|
number: 32400
|