traefik/docs/content/user-guides/crd-acme/04-ingressroutes.yml

33 lines
606 B
YAML
Raw Normal View History

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: simpleingressroute
2019-10-07 13:20:06 +00:00
namespace: default
spec:
entryPoints:
- web
routes:
2020-03-13 21:50:05 +00:00
- match: Host(`your.example.com`) && PathPrefix(`/notls`)
kind: Rule
services:
- name: whoami
port: 80
---
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: ingressroutetls
2019-10-07 13:20:06 +00:00
namespace: default
spec:
entryPoints:
- websecure
routes:
2020-03-13 21:50:05 +00:00
- match: Host(`your.example.com`) && PathPrefix(`/tls`)
kind: Rule
services:
- name: whoami
port: 80
tls:
2020-02-17 10:04:04 +00:00
certResolver: myresolver