27 lines
575 B
YAML
27 lines
575 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: synapse-werts
|
|
namespace: synapse
|
|
annotations:
|
|
haproxy-ingress.github.io/ssl-redirect: "true"
|
|
haproxy-ingress.github.io/timeout-client: 5m
|
|
haproxy-ingress.github.io/timeout-server: 5m
|
|
spec:
|
|
ingressClassName: haproxy
|
|
rules:
|
|
- host: chat.werts.us
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: synapse-werts
|
|
port:
|
|
number: 8008
|
|
tls:
|
|
- hosts:
|
|
- chat.werts.us
|
|
secretName: wildcard-tls
|