/
githubmirror
/
traefik
Обзор
Документация
Войти
/
githubmirror
/
traefik
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
integration/fixtures/https/https_entrypoint_tls.toml
53 строки
1 KB
Romain
Compute resolved tlsOptions after applying models
04 июн 2026, 11:16
Не верифицирован
04 июн 2026, 11:16
a664812
Код
Авторство
О чём код?
[global] checkNewVersion = false sendAnonymousUsage = false [log] level = "DEBUG" [entryPoints] [entryPoints.websecure] address = ":4443" [entryPoints.websecure.http.tls] [entryPoints.websecure-options] address = ":4444" [entryPoints.websecure-options.http.tls] options = "foo" [api] insecure = true [providers.file] filename = "{{ .SelfFilename }}" ## dynamic configuration ## [http.routers] [http.routers.router1] entryPoints = ["websecure"] service = "service1" rule = "Host(`snitest.com`)" [http.routers.router2] entryPoints = ["websecure-options"] service = "service1" rule = "Host(`snitest.org`)" [http.services] [http.services.service1] [http.services.service1.loadBalancer] [[http.services.service1.loadBalancer.servers]] url = "http://127.0.0.1:9010" [[tls.certificates]] certFile = "fixtures/https/snitest.com.cert" keyFile = "fixtures/https/snitest.com.key" [[tls.certificates]] certFile = "fixtures/https/snitest.org.cert" keyFile = "fixtures/https/snitest.org.key" [tls.options] [tls.options.foo] maxVersion = "VersionTLS12"