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 15:20:06 +02:00
namespace: default
spec:
entryPoints:
- web
routes:
2020-03-13 22:50:05 +01: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 15:20:06 +02:00
namespace: default
spec:
entryPoints:
- websecure
routes:
2020-03-13 22:50:05 +01:00
- match: Host(`your.example.com`) && PathPrefix(`/tls`)
kind: Rule
services:
- name: whoami
port: 80
tls:
2020-02-17 11:04:04 +01:00
certResolver: myresolver