Compare commits

...

2 Commits

Author SHA1 Message Date
Kienan Stewart 6c321954ad Enable http/2 on https entrypoint 2022-09-11 19:35:56 -04:00
Kienan Stewart 6fd2e6d452 Redirect from http to https by default 2022-09-11 19:34:03 -04:00
1 changed files with 7 additions and 0 deletions

View File

@ -1,8 +1,15 @@
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.http]
[entryPoints.http.http.redirections]
[entryPoints.http.http.redirections.entryPoint]
to = "https"
scheme = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.http2]
maxConcurrentStreams = 250
[entryPoints.traefik]
address = ":8080"