We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 42cda66 + a1e77a6 commit b9439b5Copy full SHA for b9439b5
images/federation-redirect/app.py
@@ -444,6 +444,8 @@ def make_app():
444
),
445
(r"/active_hosts", ActiveHostsHandler, {"active_hosts": hosts}),
446
(r"/metrics", MetricsHandler),
447
+ # temporary: redirect everything, no proxy
448
+ (r".*", RedirectHandler, {"load_balancer": CONFIG["load_balancer"]}),
449
(r".*", ProxyHandler, {"host": prime_host}),
450
],
451
hosts=hosts,
0 commit comments