Skip to content

Commit b9439b5

Browse files
authored
Merge pull request #3165 from minrk/redirect-proxy
temporary: redirect all instead of proxying mybinder.org to GESIS
2 parents 42cda66 + a1e77a6 commit b9439b5

File tree

1 file changed

+2
-0
lines changed
  • images/federation-redirect

1 file changed

+2
-0
lines changed

images/federation-redirect/app.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,8 @@ def make_app():
444444
),
445445
(r"/active_hosts", ActiveHostsHandler, {"active_hosts": hosts}),
446446
(r"/metrics", MetricsHandler),
447+
# temporary: redirect everything, no proxy
448+
(r".*", RedirectHandler, {"load_balancer": CONFIG["load_balancer"]}),
447449
(r".*", ProxyHandler, {"host": prime_host}),
448450
],
449451
hosts=hosts,

0 commit comments

Comments
 (0)