Skip to content

Commit 26ec31b

Browse files
committed
restore https entrypoint name in tests
1 parent ee7c6c2 commit 26ec31b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/source/consul.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ If TraefikConsulProxy is used as an externally managed service, then make sure y
161161
address = ":8000"
162162

163163
# the port on localhost where the traefik api should be found
164-
[entryPoints.enter_api]
164+
[entryPoints.auth_api]
165165
address = "localhost:8099"
166166

167167
[providers.consul]
@@ -237,7 +237,7 @@ This is an example setup for using JupyterHub and TraefikConsulProxy managed by
237237
address = ":8000"
238238

239239
# the port on localhost where the traefik api should be found
240-
[entryPoints.enter_api]
240+
[entryPoints.auth_api]
241241
address = "localhost:8099"
242242

243243
[providers.consul]

docs/source/etcd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ This is an example setup for using JupyterHub and TraefikEtcdProxy managed by an
233233
address = ":8000"
234234

235235
# the port on localhost where the traefik api should be found
236-
[entryPoints.enter_api]
236+
[entryPoints.auth_api]
237237
address = "localhost:8099"
238238

239239
[providers.etcd]

docs/source/file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ This is an example setup for using JupyterHub and TraefikFileProviderProxy manag
187187
address = ":8000"
188188

189189
# the port on localhost where the traefik api should be found
190-
[entryPoints.enter_api]
190+
[entryPoints.auth_api]
191191
address = "localhost:8099"
192192

193193
# the dynamic configuration directory

tests/config_files/traefik.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ providersThrottleDuration = "0s"
1010
directory = "/tmp/jupyterhub-traefik-proxy-test"
1111
watch = true
1212

13-
[entryPoints.websecure]
13+
[entryPoints.https]
1414
address = "127.0.0.1:8000"
1515

16-
[entryPoints.enter_api]
16+
[entryPoints.auth_api]
1717
address = "127.0.0.1:8099"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
put traefik/http/middlewares/auth_api/basicAuth/users/0 "api_admin:$apr1$eS/j3kum$q/X2khsIEG/bBGsteP.x./"
3-
put traefik/http/routers/route_api/entryPoints/0 "enter_api"
3+
put traefik/http/routers/route_api/entryPoints/0 "auth_api"
44
put traefik/http/routers/route_api/middlewares/0 "auth_api"
55
put traefik/http/routers/route_api/rule "Host(`localhost`) && PathPrefix(`/api`)"
66
put traefik/http/routers/route_api/service "api@internal"

0 commit comments

Comments
 (0)