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.
1 parent 42cda66 commit a1e77a6Copy full SHA for a1e77a6
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