Use endpoint middleware rather than hacky router

This commit is contained in:
Jake Howard 2021-03-27 23:34:34 +00:00
parent a5af5bea6c
commit 8398a2df21
Signed by: jake
GPG key ID: 57AFB45680EDD477
2 changed files with 9 additions and 9 deletions

View file

@ -5,12 +5,3 @@ http:
scheme: https
compress:
compress: {}
routers:
tls-redirect:
service: ping@internal
rule: PathPrefix(`/`)
entryPoints:
- web
middlewares:
- tls-redirect

View file

@ -1,6 +1,9 @@
entryPoints:
web:
address: :80
http:
middlewares:
- tls-redirect@file
proxyProtocol:
trustedIPs:
- "{{ wireguard.cidr }}"
@ -8,6 +11,9 @@ entryPoints:
- "{{ nebula.cidr }}"
web-secure:
address: :443
http:
middlewares:
- tls-redirect@file
proxyProtocol:
trustedIPs:
- "{{ wireguard.cidr }}"
@ -15,6 +21,9 @@ entryPoints:
- "{{ nebula.cidr }}"
matrix:
address: :8448
http:
middlewares:
- tls-redirect@file
proxyProtocol:
trustedIPs:
- "{{ wireguard.cidr }}"