Skip to content

Commit

Permalink
Merge pull request #3165 from minrk/redirect-proxy
Browse files Browse the repository at this point in the history
temporary: redirect all instead of proxying mybinder.org to GESIS
  • Loading branch information
minrk authored Jan 13, 2025
2 parents 42cda66 + a1e77a6 commit b9439b5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions images/federation-redirect/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,8 @@ def make_app():
),
(r"/active_hosts", ActiveHostsHandler, {"active_hosts": hosts}),
(r"/metrics", MetricsHandler),
# temporary: redirect everything, no proxy
(r".*", RedirectHandler, {"load_balancer": CONFIG["load_balancer"]}),
(r".*", ProxyHandler, {"host": prime_host}),
],
hosts=hosts,
Expand Down

0 comments on commit b9439b5

Please sign in to comment.